Unnecessary modifier in enums

This commit is contained in:
thatsIch
2015-03-26 11:03:15 +01:00
parent 3143c871d0
commit 6aeca93b85
11 changed files with 12 additions and 12 deletions
@@ -66,7 +66,7 @@ public enum IntegrationType
public final String dspName;
public final String modID;
private IntegrationType(IntegrationSide side, String Name, String modid) {
IntegrationType( IntegrationSide side, String Name, String modid ) {
this.side = side;
this.dspName = Name;
this.modID = modid;