(Editor editor)
| 240 | |
| 241 | |
| 242 | synchronized static public void remove(Editor editor) { |
| 243 | int index = findRecord(editor.getSketch().getMainFilePath()); |
| 244 | if (index != -1) { |
| 245 | System.out.println("removing " + editor.getSketch().getMainFilePath()); |
| 246 | new Exception().printStackTrace(System.out); |
| 247 | records.remove(index); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | |
| 252 | // synchronized void handleRename(String oldPath, String newPath) { |
no test coverage detected