Remove a few unused imports & variables.

This commit is contained in:
gmcferrin 2013-01-08 10:50:37 -05:00
parent 1a2dfb9b19
commit 84994c2b2f
3 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,5 @@
package com.gmail.nossr50.skills.repair;
import java.lang.reflect.Field;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Random;

View File

@ -287,9 +287,6 @@ public class Database {
boolean isValid = false;
boolean exists = (connection != null);
// Initialized as needed later
long timestamp=0;
// If we're waiting for server to recover then leave early
if (nextReconnectTimestamp > 0 && nextReconnectTimestamp > System.nanoTime()) {
return false;

View File

@ -4,8 +4,6 @@ import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
public class Permissions {
private static volatile Permissions instance;
public static boolean hasPermission(CommandSender sender, String perm)
{
if(sender.hasPermission(perm))