Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
+4 -2
View File
@@ -18,12 +18,14 @@
package appeng.me;
import java.util.HashSet;
import appeng.api.networking.IGridHost;
import appeng.api.networking.IGridNode;
import appeng.api.networking.IMachineSet;
public class MachineSet extends HashSet<IGridNode> implements IMachineSet
{
@@ -31,7 +33,8 @@ public class MachineSet extends HashSet<IGridNode> implements IMachineSet
private final Class<? extends IGridHost> machine;
MachineSet(Class<? extends IGridHost> m) {
MachineSet( Class<? extends IGridHost> m )
{
this.machine = m;
}
@@ -40,5 +43,4 @@ public class MachineSet extends HashSet<IGridNode> implements IMachineSet
{
return this.machine;
}
}