1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: filler-1.02/src/friendless/games/filler/TournamentPointsTableRow.java
===================================================================
--- filler-1.02.orig/src/friendless/games/filler/TournamentPointsTableRow.java
+++ filler-1.02/src/friendless/games/filler/TournamentPointsTableRow.java
@@ -78,7 +78,7 @@ public class TournamentPointsTableRow im
public int compareTo(TournamentPointsTableRow other) {
if (this.getWon() != other.getWon()) {
// wins aren't equal
- return (other.getWon() - this.getWon());; // use wins to seperate teams
+ return (other.getWon() - this.getWon()); // use wins to seperate teams
} else {
return (other.getDiff() - this.getDiff()); //else use goal difference to seperate teams
}
|