mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[REFACTOR] IDEA Clean
This commit is contained in:
parent
0c97fdf45c
commit
fb3241dd52
2 changed files with 3 additions and 3 deletions
|
@ -7,8 +7,8 @@
|
|||
import java.util.Map;
|
||||
|
||||
public class FeaturesManager {
|
||||
private transient LaunchServer server;
|
||||
private Map<String, String> map;
|
||||
private final transient LaunchServer server;
|
||||
private final Map<String, String> map;
|
||||
|
||||
public FeaturesManager(LaunchServer server) {
|
||||
this.server = server;
|
||||
|
|
|
@ -98,7 +98,7 @@ public InetSocketAddress toSocketAddress() {
|
|||
}
|
||||
|
||||
@LauncherNetworkAPI
|
||||
private List<ServerProfile> servers = new ArrayList<>(1);
|
||||
private final List<ServerProfile> servers = new ArrayList<>(1);
|
||||
|
||||
public ServerProfile getDefaultServerProfile() {
|
||||
for (ServerProfile profile : servers) {
|
||||
|
|
Loading…
Reference in a new issue