MCPcopy Create free account
hub / github.com/ShivaBhattacharjee/KeyZen / User

Method User

data/java/02_oop.java:5–8  ·  view source on GitHub ↗
(String name, int bestWpm)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected