mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-08 03:39:42 +01:00
Removed debug logging statement
This commit is contained in:
parent
9abe83b213
commit
585a2ecf52
@ -205,7 +205,6 @@ public class KillQueries {
|
|||||||
while (set.next()) {
|
while (set.next()) {
|
||||||
int kills = set.getInt("kills");
|
int kills = set.getInt("kills");
|
||||||
int deaths = set.getInt("deaths");
|
int deaths = set.getInt("deaths");
|
||||||
System.out.println("K:" + kills + " D:" + deaths);
|
|
||||||
totalKDR += (double) kills / (deaths > 0 ? deaths : 1);
|
totalKDR += (double) kills / (deaths > 0 ? deaths : 1);
|
||||||
playerCount++;
|
playerCount++;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user