Unnecessary enum modifiers

This commit is contained in:
thatsIch
2015-03-26 11:21:55 +01:00
parent ec05bd994c
commit d8f452b665
8 changed files with 16 additions and 15 deletions
@@ -130,7 +130,7 @@ public enum Achievements
return this.stat;
}
private Achievements( int x, int y, AEColoredItemDefinition which, AchievementType type )
Achievements( int x, int y, AEColoredItemDefinition which, AchievementType type )
{
this.stack = (which != null) ? which.stack( AEColor.Transparent, 1 ) : null;
this.type = type;
@@ -138,7 +138,7 @@ public enum Achievements
this.y = y;
}
private Achievements( int x, int y, AEItemDefinition which, AchievementType type )
Achievements( int x, int y, AEItemDefinition which, AchievementType type )
{
this.stack = (which != null) ? which.stack( 1 ) : null;
this.type = type;
@@ -146,7 +146,7 @@ public enum Achievements
this.y = y;
}
private Achievements( int x, int y, ItemStack which, AchievementType type )
Achievements( int x, int y, ItemStack which, AchievementType type )
{
this.stack = which;
this.type = type;
+1 -1
View File
@@ -47,7 +47,7 @@ public enum Stats
return this.stat;
}
private Stats() {
Stats() {
}
public void addToPlayer(EntityPlayer player, int howMany)