Add this qualifier

This commit is contained in:
thatsIch
2015-09-30 14:26:54 +02:00
parent efecd4b8c1
commit ebda927fb5
105 changed files with 422 additions and 415 deletions
@@ -141,7 +141,7 @@ public class WrapperInvSlot
public int getField(
final int id )
{
return inv.getField( id );
return this.inv.getField( id );
}
@Override
@@ -159,7 +159,7 @@ public class WrapperInvSlot
@Override
public IChatComponent getDisplayName()
{
return inv.getDisplayName();
return this.inv.getDisplayName();
}
@Override
@@ -167,7 +167,7 @@ public class WrapperInvSlot
final int id,
final int value )
{
inv.setField( id, value );
this.inv.setField( id, value );
}
}
}