Fixed checkstyle test for the Sponge platform

This commit is contained in:
Wyatt Childers 2016-03-19 14:32:01 -04:00
parent 04cf831a33
commit a91d881d73
2 changed files with 13 additions and 12 deletions

View File

@ -41,12 +41,6 @@
<allow pkg="net.minecraft.server"/> <allow pkg="net.minecraft.server"/>
</subpackage> </subpackage>
<subpackage name="spout">
<allow pkg="org.spout"/>
<allow pkg="org.jboss.netty"/>
<allow pkg="org.apache"/>
</subpackage>
<subpackage name="forge"> <subpackage name="forge">
<allow pkg="cpw"/> <allow pkg="cpw"/>
<allow pkg="net.minecraft"/> <allow pkg="net.minecraft"/>
@ -57,5 +51,12 @@
<allow pkg="io.netty.buffer"/> <allow pkg="io.netty.buffer"/>
<allow pkg="org.spongepowered.api" /> <allow pkg="org.spongepowered.api" />
</subpackage> </subpackage>
<subpackage name="sponge">
<allow pkg="net.minecraft"/>
<allow pkg="com.google.inject" />
<allow pkg="com.flowpowered.math" />
<allow pkg="org.spongepowered.api" />
</subpackage>
</subpackage> </subpackage>
</import-control> </import-control>

View File

@ -42,15 +42,15 @@ final class IDHelper {
return ((BiomeGenBase) type).biomeID; return ((BiomeGenBase) type).biomeID;
} }
public static ItemType resolveItem(int ID) { public static ItemType resolveItem(int intID) {
return (ItemType) Item.getItemById(ID); return (ItemType) Item.getItemById(intID);
} }
public static BlockType resolveBlock(int ID) { public static BlockType resolveBlock(int intID) {
return (BlockType) Block.getBlockById(ID); return (BlockType) Block.getBlockById(intID);
} }
public static BiomeType resolveBiome(int ID) { public static BiomeType resolveBiome(int intID) {
return (BiomeType) BiomeGenBase.getBiome(ID); return (BiomeType) BiomeGenBase.getBiome(intID);
} }
} }