(int x, int y)
| 202 | } |
| 203 | |
| 204 | protected final void pointerDragged(int x, int y) { |
| 205 | try { |
| 206 | list.pointerDragged(x, y); |
| 207 | } catch (Exception e) { |
| 208 | if (sd.roster != null) { |
| 209 | sd.roster.errorLog("pointerdragged exception: " + e.getMessage()); |
| 210 | } |
| 211 | } |
| 212 | repaint(); |
| 213 | } |
| 214 | |
| 215 | protected final void pointerReleased(int x, int y) { |
| 216 | try { |
nothing calls this directly
no test coverage detected