mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-21 03:03:02 +01:00
Update code style
This commit is contained in:
@@ -13,18 +13,15 @@ public interface UnsafeValueValidation {
|
||||
/**
|
||||
* Prints all errors found when validating the config
|
||||
*/
|
||||
default void validateEntries()
|
||||
{
|
||||
default void validateEntries() {
|
||||
/*
|
||||
* Print Errors about Keys
|
||||
*/
|
||||
|
||||
List<String> validKeyErrors = validateKeys(); // Validate Keys
|
||||
|
||||
if(validKeyErrors != null && validKeyErrors.size() > 0)
|
||||
{
|
||||
for(String error : validKeyErrors)
|
||||
{
|
||||
if (validKeyErrors != null && validKeyErrors.size() > 0) {
|
||||
for (String error : validKeyErrors) {
|
||||
mcMMO.p.getLogger().severe(error);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user