Fix code style

This commit is contained in:
Gabriele C 2020-02-02 19:08:07 +01:00
parent c95443fda7
commit 12ba0f955e
2 changed files with 3 additions and 3 deletions

View File

@ -173,7 +173,7 @@ public class AuthMe extends JavaPlugin {
// Successful message
logger.info("AuthMe " + getPluginVersion() + " build n." + getPluginBuildNumber() + " successfully enabled!");
// Start catching wrong sync/async calls
if(System.getProperty("authme.disableThreadSafetyChecks") == null) {
if (System.getProperty("authme.disableThreadSafetyChecks") == null) {
BukkitThreadSafety.setEnabled(true);
}

View File

@ -204,8 +204,8 @@ public class DrawDependency implements ToolTask {
LimboPersistence.class.getPackage().getName() + ".LimboPersistenceHandler");
return ImmutableList.of(ExecutableCommand.class, SynchronousProcess.class, AsynchronousProcess.class,
EncryptionMethod.class, AbstractConverter.class, Listener.class, RegistrationExecutor.class, debugSectionClass,
limboPersistenceClass);
EncryptionMethod.class, AbstractConverter.class, Listener.class, RegistrationExecutor.class,
debugSectionClass, limboPersistenceClass);
} catch (ClassNotFoundException e) {
throw new IllegalStateException(e);
}