Trivial changes

Trivial changes.
This commit is contained in:
SenseiKiwi
2013-06-18 02:27:36 -04:00
parent 1160145df1
commit e37312e733
2 changed files with 2 additions and 14 deletions

View File

@@ -23,7 +23,7 @@ public class CommandDeleteRifts extends CommandBase
private static DDProperties properties = null; private static DDProperties properties = null;
public String getCommandName()//the name of our command public String getCommandName()
{ {
return "dimdoors-cleanupRifts"; return "dimdoors-cleanupRifts";
} }

View File

@@ -16,12 +16,8 @@ public class CommandPruneDims extends CommandBase
return "dimdoors-prunePockets"; return "dimdoors-prunePockets";
} }
@Override @Override
public void processCommand(ICommandSender var1, String[] var2) public void processCommand(ICommandSender var1, String[] var2)
{ {
int numRemoved=0; int numRemoved=0;
ArrayList dimsWithLinks=new ArrayList(); ArrayList dimsWithLinks=new ArrayList();
@@ -56,14 +52,6 @@ public class CommandPruneDims extends CommandBase
} }
} }
dimHelper.instance.save(); dimHelper.instance.save();
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+numRemoved+" unreachable pocket dims."); getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+numRemoved+" unreachable pocket dims.");
} }
} }