Commit 7f3ee9081b96dd3234a641bff4b342de596ee6e4

Authored by Mumfrey
1 parent b69587af

Remove redundant field which was breaking things under forge

checkstyle.xml
... ... @@ -5,7 +5,7 @@
5 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 9 Description: none
10 10 -->
11 11 <module name="Checker">
... ... @@ -36,7 +36,7 @@
36 36 <message key="name.invalidPattern" value="Type name ''{0}'' must match pattern ''{1}''."/>
37 37 </module>
38 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 40 <message key="name.invalidPattern" value="Member name ''{0}'' must match pattern ''{1}''."/>
41 41 </module>
42 42 <module name="ParameterName">
... ...
src/client/java/com/mumfrey/liteloader/client/mixin/MixinIntIdentityHashBiMap.java
... ... @@ -15,7 +15,6 @@ import net.minecraft.util.IntIdentityHashBiMap;
15 15 @Mixin(IntIdentityHashBiMap.class)
16 16 public abstract class MixinIntIdentityHashBiMap<V> implements IIntIdentityHashBiMap<V>
17 17 {
18   - @Shadow private static final Object field_186817_a = null;
19 18 @Shadow private V[] objectArray;
20 19 @Shadow private int[] intKeys;
21 20 @Shadow private V[] intToObjects;
... ...