Skip to content
This repository was archived by the owner on Jun 7, 2022. It is now read-only.

Commit 063f0bd

Browse files
juliarnGiantTreeLP
authored andcommitted
Remove fast connect from proxy config
1 parent d9e089d commit 063f0bd

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

cloudnet-core/src/main/java/de/dytanic/cloudnetcore/util/defaults/BasicProxyConfig.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public BasicProxyConfig() {
2121
" §bMaintenance §8» §7We are still in §bmaintenance"),
2222
"§8➜ §bMaintenance §8§l【§c✘§8§l】",
2323
1000,
24-
false,
2524
true,
2625
new AutoSlot(0, false),
2726
new TabList(true,

cloudnet-lib/src/main/java/de/dytanic/cloudnet/lib/proxylayout/ProxyConfig.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ public class ProxyConfig {
2121

2222
private int maxPlayers;
2323

24-
private boolean fastConnect;
25-
2624
private Boolean customPayloadFixer;
2725

2826
private AutoSlot autoSlot;
@@ -41,7 +39,6 @@ public ProxyConfig(boolean enabled,
4139
Motd maintenanceMotdLayout,
4240
String maintenaceProtocol,
4341
int maxPlayers,
44-
boolean fastConnect,
4542
Boolean customPayloadFixer,
4643
AutoSlot autoSlot,
4744
TabList tabList,
@@ -54,7 +51,6 @@ public ProxyConfig(boolean enabled,
5451
this.maintenanceMotdLayout = maintenanceMotdLayout;
5552
this.maintenaceProtocol = maintenaceProtocol;
5653
this.maxPlayers = maxPlayers;
57-
this.fastConnect = fastConnect;
5854
this.customPayloadFixer = customPayloadFixer;
5955
this.autoSlot = autoSlot;
6056
this.tabList = tabList;
@@ -159,15 +155,4 @@ public void setEnabled(boolean enabled) {
159155
this.enabled = enabled;
160156
}
161157

162-
/**
163-
* @deprecated this option is not used anymore and will be removed in a future release
164-
*/
165-
@Deprecated
166-
public boolean isFastConnect() {
167-
return fastConnect;
168-
}
169-
170-
public void setFastConnect(boolean fastConnect) {
171-
this.fastConnect = fastConnect;
172-
}
173158
}

0 commit comments

Comments
 (0)