Commit 21985ba43fb4d333f66b035399e1687c328e6379
1 parent
5c199cbf
Fix some very minor checkstyle violations
Showing
5 changed files
with
14 additions
and
8 deletions
src/client/java/com/mumfrey/liteloader/client/GameEngineClient.java
@@ -204,7 +204,8 @@ public class GameEngineClient implements GameEngine<Minecraft, IntegratedServer> | @@ -204,7 +204,8 @@ public class GameEngineClient implements GameEngine<Minecraft, IntegratedServer> | ||
204 | int index = GameEngineClient.CATEGORY_SORT_INDEX_START; | 204 | int index = GameEngineClient.CATEGORY_SORT_INDEX_START; |
205 | for (Integer value : categorySort.values()) | 205 | for (Integer value : categorySort.values()) |
206 | { | 206 | { |
207 | - if (value.intValue() >= index) { | 207 | + if (value.intValue() >= index) |
208 | + { | ||
208 | index = value.intValue() + 1; | 209 | index = value.intValue() + 1; |
209 | } | 210 | } |
210 | } | 211 | } |
src/client/java/com/mumfrey/liteloader/modconfig/AbstractConfigPanel.java
@@ -105,7 +105,7 @@ public abstract class AbstractConfigPanel implements ConfigPanel | @@ -105,7 +105,7 @@ public abstract class AbstractConfigPanel implements ConfigPanel | ||
105 | /** | 105 | /** |
106 | * Base for config option handle structs | 106 | * Base for config option handle structs |
107 | */ | 107 | */ |
108 | - static abstract class ConfigOption | 108 | + abstract static class ConfigOption |
109 | { | 109 | { |
110 | void onTick() | 110 | void onTick() |
111 | { | 111 | { |
@@ -302,7 +302,7 @@ public abstract class AbstractConfigPanel implements ConfigPanel | @@ -302,7 +302,7 @@ public abstract class AbstractConfigPanel implements ConfigPanel | ||
302 | @Override | 302 | @Override |
303 | public ConfigTextField setRegex(String regex, boolean force) | 303 | public ConfigTextField setRegex(String regex, boolean force) |
304 | { | 304 | { |
305 | - this.textField.setRegex(Pattern.compile(regex), force);; | 305 | + this.textField.setRegex(Pattern.compile(regex), force); |
306 | return this; | 306 | return this; |
307 | } | 307 | } |
308 | 308 | ||
@@ -342,7 +342,8 @@ public abstract class AbstractConfigPanel implements ConfigPanel | @@ -342,7 +342,8 @@ public abstract class AbstractConfigPanel implements ConfigPanel | ||
342 | } | 342 | } |
343 | else | 343 | else |
344 | { | 344 | { |
345 | - this.setValidator((text) -> { | 345 | + this.setValidator((text) -> |
346 | + { | ||
346 | this.validate(text); | 347 | this.validate(text); |
347 | return true; | 348 | return true; |
348 | }); | 349 | }); |
src/main/java/com/mumfrey/liteloader/permissions/PermissionsManagerClient.java
@@ -47,7 +47,7 @@ public final class PermissionsManagerClient implements PermissionsManager, Plugi | @@ -47,7 +47,7 @@ public final class PermissionsManagerClient implements PermissionsManager, Plugi | ||
47 | * Permissions permissible which is a proxy for permissions that are common | 47 | * Permissions permissible which is a proxy for permissions that are common |
48 | * to all mods. | 48 | * to all mods. |
49 | */ | 49 | */ |
50 | - private final static Permissible allMods = new PermissibleAllMods(); | 50 | + private static final Permissible allMods = new PermissibleAllMods(); |
51 | 51 | ||
52 | /** | 52 | /** |
53 | * List of registered client mods supporting permissions | 53 | * List of registered client mods supporting permissions |
src/main/java/com/mumfrey/liteloader/transformers/IsolatedClassWriter.java
@@ -69,7 +69,9 @@ public class IsolatedClassWriter extends ClassWriter | @@ -69,7 +69,9 @@ public class IsolatedClassWriter extends ClassWriter | ||
69 | do | 69 | do |
70 | { | 70 | { |
71 | c = c.getSuperclass(); | 71 | c = c.getSuperclass(); |
72 | - } while (!c.isAssignableFrom(d)); | 72 | + } |
73 | + while (!c.isAssignableFrom(d)); | ||
74 | + | ||
73 | return c.getName().replace('.', '/'); | 75 | return c.getName().replace('.', '/'); |
74 | } | 76 | } |
75 | } | 77 | } |
src/main/java/com/mumfrey/liteloader/util/jinput/ComponentRegistry.java
@@ -98,7 +98,8 @@ public class ComponentRegistry | @@ -98,7 +98,8 @@ public class ComponentRegistry | ||
98 | components.add(component); | 98 | components.add(component); |
99 | } | 99 | } |
100 | 100 | ||
101 | - } while (component != null && components.size() < 32); | 101 | + } |
102 | + while (component != null && components.size() < 32); | ||
102 | 103 | ||
103 | return components; | 104 | return components; |
104 | } | 105 | } |
@@ -150,7 +151,8 @@ public class ComponentRegistry | @@ -150,7 +151,8 @@ public class ComponentRegistry | ||
150 | controllers.add(controller); | 151 | controllers.add(controller); |
151 | } | 152 | } |
152 | 153 | ||
153 | - } while (controller != null && controllers.size() < 32); | 154 | + } |
155 | + while (controller != null && controllers.size() < 32); | ||
154 | 156 | ||
155 | return controllers; | 157 | return controllers; |
156 | } | 158 | } |