(int count, char ch)
| 47 | int count; |
| 48 | char ch; |
| 49 | Pair(int count, char ch){ |
| 50 | this.count = count; |
| 51 | this.ch = ch; |
| 52 | } |
| 53 | public int compareTo(Pair that){ |
| 54 | return that.count - this.count; // dec order of count |
| 55 | } |
nothing calls this directly
no outgoing calls
no test coverage detected