(ActionEvent e)
| 271 | textarea.getInputMap().put(keyStroke, ACTION_KEY); |
| 272 | textarea.getActionMap().put(ACTION_KEY, new AbstractAction() { |
| 273 | @Override |
| 274 | public void actionPerformed(ActionEvent e) { |
| 275 | handleCommentUncomment(); |
| 276 | } |
| 277 | }); |
| 278 | } |
| 279 | textarea.addCaretListener(new CaretListener() { |
nothing calls this directly
no test coverage detected