Converted spaces to tabs, except for plugin.yml

This commit is contained in:
Charlie Wang 2013-06-30 15:17:56 -04:00
parent e749635131
commit 65122cc098
3 changed files with 110 additions and 112 deletions

View File

@ -1,13 +1,13 @@
package gibstick.bukkit.discosheep;
import java.util.ArrayList;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.entity.Sheep;
import org.bukkit.Location;
import org.bukkit.entity.EntityType;
import org.bukkit.World;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.entity.Sheep;
import org.bukkit.plugin.Plugin;
import org.bukkit.plugin.java.JavaPlugin;
public final class DiscoSheep extends JavaPlugin {
@ -51,7 +51,7 @@ public final class DiscoSheep extends JavaPlugin {
}
}
// Mark all sheep in the sheep array for removal
// Mark all sheep in the sheep array for removal, then clear the array
void removeAllSheep() {
for (int i = 0; i < sheepArray.size(); i++) {
sheepArray.get(i).remove();

View File

@ -4,7 +4,6 @@ import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.command.CommandExecutor;
public class DiscoSheepCommandExecutor implements CommandExecutor {
private DiscoSheep parent;
@ -18,5 +17,4 @@ public class DiscoSheepCommandExecutor implements CommandExecutor {
return true;
}
}