Remove old lines of debug code.

This commit is contained in:
Ty Sayers 2015-02-19 18:55:21 -05:00
parent def101cc8d
commit e1f7e2dbcc
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,6 @@ public class SetTournamentCommand extends CommandBase<LeaderboardManager>
int gamemode = Integer.parseInt(args[1]);
int value = Integer.parseInt(args[2]);
LeaderboardManager.getInstance().attemptStatEvent(caller, statType, gamemode, value);
}
System.out.println("Received call with arg lengths: " + args.length);*/
}*/
}
}

View File

@ -61,7 +61,6 @@ public class StatEventsRepository extends RepositoryBase
*/
public void insertStatEvent(String playerName, int gamemode, String serverGroup, int type, int value)
{
System.out.println("------Attemping stat insert event on " + playerName + " -- " + value);
// Hacky string concatanation - Don't judge me!!
// TODO: How to handle outside value block parameters
executeUpdate(INSERT_EVENT + value + ";", new ColumnInt("gamemode", gamemode), new ColumnVarChar("serverGroup", 100, serverGroup),