Capitalised enums to match conventions

This commit is contained in:
yueh
2016-09-17 15:02:51 +02:00
parent 2d1d29eb37
commit f185bc07a6
43 changed files with 105 additions and 98 deletions
@@ -156,10 +156,10 @@ public class AEItemResolver implements ISubItemResolver
}
catch( final Throwable t )
{
col = AEColor.Transparent;
col = AEColor.TRANSPARENT;
}
if( col == AEColor.Transparent )
if( col == AEColor.TRANSPARENT )
{
return null;
}
@@ -178,7 +178,7 @@ public class AEItemResolver implements ISubItemResolver
}
catch( final Throwable t )
{
col = AEColor.Transparent;
col = AEColor.TRANSPARENT;
}
final ItemStack is = partType.stack( col, 1 );
@@ -61,7 +61,7 @@ public final class Inscribe extends InscriberProcess
final ItemStack top = ( this.getTopOptional() == null ) ? null : this.getTopOptional().getItemStack();
final ItemStack bot = ( this.getBotOptional() == null ) ? null : this.getBotOptional().getItemStack();
final ItemStack output = this.getOutput().getItemStack();
final InscriberProcessType type = InscriberProcessType.Inscribe;
final InscriberProcessType type = InscriberProcessType.INSCRIBE;
final IInscriberRecipe recipe = new InscriberRecipe( inputs, output, top, bot, type );
@@ -61,7 +61,7 @@ public final class Press extends InscriberProcess
final ItemStack top = ( this.getTopOptional() == null ) ? null : this.getTopOptional().getItemStack();
final ItemStack bot = ( this.getBotOptional() == null ) ? null : this.getBotOptional().getItemStack();
final ItemStack output = this.getOutput().getItemStack();
final InscriberProcessType type = InscriberProcessType.Press;
final InscriberProcessType type = InscriberProcessType.PRESS;
final IInscriberRecipe recipe = new InscriberRecipe( inputs, output, top, bot, type );