()
| 531 | } |
| 532 | |
| 533 | private void updateSearchStats() { |
| 534 | int size = cheatEngine.getSearchResults().size(); |
| 535 | searchStatusLabel.setText(size + (size == 1 ? " result" : " results") + " found."); |
| 536 | } |
| 537 | |
| 538 | private Watch addWatch(int addr) { |
| 539 | Watch watch = new Watch(addr, this); |
no test coverage detected