mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-04-10 18:02:26 +02:00
Fix whitespace [skip actions]
This commit is contained in:
@@ -4,17 +4,17 @@ import lombok.NonNull;
|
||||
|
||||
public abstract class BasePlayerDataManager {
|
||||
protected transient Player player;
|
||||
|
||||
|
||||
public BasePlayerDataManager() {}
|
||||
|
||||
|
||||
public BasePlayerDataManager(@NonNull Player player) {
|
||||
this.player = player;
|
||||
}
|
||||
|
||||
|
||||
public Player getPlayer() {
|
||||
return this.player;
|
||||
}
|
||||
|
||||
|
||||
public void setPlayer(Player player) {
|
||||
if (this.player == null) {
|
||||
this.player = player;
|
||||
|
||||
Reference in New Issue
Block a user