(String name, int bestWpm)
| 3 | private int bestWpm; |
| 4 | |
| 5 | User(String name, int bestWpm) { |
| 6 | this.name = name; |
| 7 | this.bestWpm = bestWpm; |
| 8 | } |
| 9 | |
| 10 | void updateBest(int latestWpm) { |
| 11 | if (latestWpm > bestWpm) bestWpm = latestWpm; |
nothing calls this directly
no outgoing calls
no test coverage detected