protected member in final class
This commit is contained in:
parent
81c32d5181
commit
0519f60cb0
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ public final class AEFluidStack extends AEStack<IAEFluidStack> implements IAEFlu
|
|||
|
||||
public int myHash;
|
||||
Fluid fluid;
|
||||
protected IAETagCompound tagCompound;
|
||||
private IAETagCompound tagCompound;
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
|
@ -83,7 +83,7 @@ public final class AEFluidStack extends AEStack<IAEFluidStack> implements IAEFlu
|
|||
this.myHash = is.myHash;
|
||||
}
|
||||
|
||||
protected AEFluidStack(FluidStack is) {
|
||||
private AEFluidStack( FluidStack is ) {
|
||||
if ( is == null )
|
||||
throw new RuntimeException( "Invalid Itemstack." );
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ public final class AEItemStack extends AEStack<IAEItemStack> implements IAEItemS
|
|||
this.setCountRequestable( is.getCountRequestable() );
|
||||
}
|
||||
|
||||
protected AEItemStack(ItemStack is) {
|
||||
private AEItemStack( ItemStack is ) {
|
||||
if ( is == null )
|
||||
throw new RuntimeException( "Invalid Itemstack." );
|
||||
|
||||
|
|
Loading…
Reference in a new issue