Always use qualified access for fields and methods

This commit is contained in:
yueh
2017-07-20 21:27:22 +02:00
parent f9cad0758d
commit 15582fd1df
211 changed files with 1086 additions and 1086 deletions
@@ -66,18 +66,18 @@ class FacadeRecipeWrapper extends BlankRecipeWrapper implements IShapedCraftingR
List<ItemStack> input = new ArrayList<>( 9 );
input.add( ItemStack.EMPTY );
input.add( cableAnchor );
input.add( this.cableAnchor );
input.add( ItemStack.EMPTY );
input.add( cableAnchor );
input.add( textureItem );
input.add( cableAnchor );
input.add( this.cableAnchor );
input.add( this.textureItem );
input.add( this.cableAnchor );
input.add( ItemStack.EMPTY );
input.add( cableAnchor );
input.add( this.cableAnchor );
input.add( ItemStack.EMPTY );
ingredients.setInputs( ItemStack.class, input );
ingredients.setOutput( ItemStack.class, facade );
ingredients.setOutput( ItemStack.class, this.facade );
}
}