Reformat and clean up "net" package

This commit is contained in:
P0nk
2021-09-09 23:26:02 +02:00
parent 69f4580637
commit 6be6ea9927
235 changed files with 3556 additions and 3398 deletions

View File

@@ -84,6 +84,8 @@ public class MessengerCharacter {
final MessengerCharacter other = (MessengerCharacter) obj;
if (name == null) {
return other.name == null;
} else return name.equals(other.name);
} else {
return name.equals(other.name);
}
}
}

View File

@@ -133,7 +133,9 @@ public class PartyCharacter {
final PartyCharacter other = (PartyCharacter) obj;
if (name == null) {
return other.name == null;
} else return name.equals(other.name);
} else {
return name.equals(other.name);
}
}
public int getWorld() {

File diff suppressed because it is too large Load Diff