Another Cleanup

This commit is contained in:
David Marby 2012-05-06 17:58:56 +02:00
parent ee3d052bd1
commit e8b4443df7
2 changed files with 3 additions and 3 deletions

View File

@ -200,7 +200,7 @@ public class Citizens extends JavaPlugin {
});
}
metrics.start();
} catch (IOException e) {
} catch (IOException ex) {
Messaging.log("Unable to load metrics");
}
}

View File

@ -27,7 +27,7 @@ public class CitizensCharacterManager implements CharacterManager {
ex.printStackTrace();
}
}
public Iterable getRegistered(){
return (Iterable) registered;
public Iterable<Character> getRegistered(){
return registered.values();
}
}