Remove unnecessary method

This commit is contained in:
Manuel Thalmann 2022-10-11 12:39:32 +02:00
parent 6722d8ee02
commit 3a3ecefed2

View file

@ -41,11 +41,6 @@ public class Competitor implements Comparable<Competitor> {
return 0;
}
private static String timeToString(int time) {
SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
return df.format(new Date(time));
}
public String toString() {
return ""+ rank + " "+name+" "+time;
}