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"/>
</subpackage>
<subpackage name="spout">
<allow pkg="org.spout"/>
<allow pkg="org.jboss.netty"/>
<allow pkg="org.apache"/>
</subpackage>
<subpackage name="forge">
<allow pkg="cpw"/>
<allow pkg="net.minecraft"/>
@ -57,5 +51,12 @@
<allow pkg="io.netty.buffer"/>
<allow pkg="org.spongepowered.api" />
</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>
</import-control>

View File

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