Because lowercase class names are just wrong...

This commit is contained in:
GJ
2013-01-16 17:13:56 -05:00
parent 4c81eb3058
commit 2a4fe4aa48
2 changed files with 4 additions and 4 deletions

View File

@ -11,12 +11,12 @@ import com.gmail.nossr50.locale.LocaleLoader;
import com.gmail.nossr50.util.Database;
import com.gmail.nossr50.util.Skills;
public class mcRankAsync implements Runnable {
public class McRankAsync implements Runnable {
private Database database = mcMMO.getPlayerDatabase();
private final String playerName;
private final CommandSender sender;
public mcRankAsync(String playerName, CommandSender sender) {
public McRankAsync(String playerName, CommandSender sender) {
this.playerName = playerName;
this.sender = sender;
}