Commit 7f3ee9081b96dd3234a641bff4b342de596ee6e4
1 parent
b69587af
Remove redundant field which was breaking things under forge
Showing
2 changed files
with
2 additions
and
3 deletions
checkstyle.xml
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | This configuration file was written by the eclipse-cs plugin configuration editor | 5 | This configuration file was written by the eclipse-cs plugin configuration editor |
6 | --> | 6 | --> |
7 | <!-- | 7 | <!-- |
8 | - Checkstyle-Configuration: LiteLoader Style | 8 | + Checkstyle-Configuration: LiteLoader |
9 | Description: none | 9 | Description: none |
10 | --> | 10 | --> |
11 | <module name="Checker"> | 11 | <module name="Checker"> |
@@ -36,7 +36,7 @@ | @@ -36,7 +36,7 @@ | ||
36 | <message key="name.invalidPattern" value="Type name ''{0}'' must match pattern ''{1}''."/> | 36 | <message key="name.invalidPattern" value="Type name ''{0}'' must match pattern ''{1}''."/> |
37 | </module> | 37 | </module> |
38 | <module name="MemberName"> | 38 | <module name="MemberName"> |
39 | - <property name="format" value="^[a-z]([a-zA-Z0-9]*)?$"/> | 39 | + <property name="format" value="^[a-z]([a-zA-Z0-9_]*)?$"/> |
40 | <message key="name.invalidPattern" value="Member name ''{0}'' must match pattern ''{1}''."/> | 40 | <message key="name.invalidPattern" value="Member name ''{0}'' must match pattern ''{1}''."/> |
41 | </module> | 41 | </module> |
42 | <module name="ParameterName"> | 42 | <module name="ParameterName"> |
src/client/java/com/mumfrey/liteloader/client/mixin/MixinIntIdentityHashBiMap.java
@@ -15,7 +15,6 @@ import net.minecraft.util.IntIdentityHashBiMap; | @@ -15,7 +15,6 @@ import net.minecraft.util.IntIdentityHashBiMap; | ||
15 | @Mixin(IntIdentityHashBiMap.class) | 15 | @Mixin(IntIdentityHashBiMap.class) |
16 | public abstract class MixinIntIdentityHashBiMap<V> implements IIntIdentityHashBiMap<V> | 16 | public abstract class MixinIntIdentityHashBiMap<V> implements IIntIdentityHashBiMap<V> |
17 | { | 17 | { |
18 | - @Shadow private static final Object field_186817_a = null; | ||
19 | @Shadow private V[] objectArray; | 18 | @Shadow private V[] objectArray; |
20 | @Shadow private int[] intKeys; | 19 | @Shadow private int[] intKeys; |
21 | @Shadow private V[] intToObjects; | 20 | @Shadow private V[] intToObjects; |