Remove the system property check for uuidOverride (#459)

as it caused a server timeout...
https://pastebin.com/z5ktU8r3
Dieser Commit ist enthalten in:
Jesse Boyd 2019-04-11 12:39:56 +10:00 committet von wizjany
Ursprung ec0422d682
Commit b5e1f3dbc3

Datei anzeigen

@ -243,12 +243,7 @@ public class SessionManager {
* @return the key object
*/
protected UUID getKey(SessionKey key) {
String forcedKey = System.getProperty("worldedit.session.uuidOverride");
if (forcedKey != null) {
return UUID.fromString(forcedKey);
} else {
return key.getUniqueId();
}
return key.getUniqueId();
}
/**