Merge pull request #184 from thatsIch/Final

Removes redundant final modifiers of private methods
This commit is contained in:
Chris
2014-09-29 14:11:35 -07:00
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ public abstract class IC2 extends MinecraftJoules6 implements IEnergySink
addToENet();
}
final private void addToENet()
private void addToENet()
{
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.IC2 ) )
{
@@ -89,7 +89,7 @@ public abstract class IC2 extends MinecraftJoules6 implements IEnergySink
}
}
final private void removeFromENet()
private void removeFromENet()
{
if ( AppEng.instance.isIntegrationEnabled( IntegrationType.IC2 ) )
{