(String path)
| 640 | } |
| 641 | |
| 642 | protected void removeRecentSketchPath(String path) { |
| 643 | Collection<String> sketches = new LinkedList<>(PreferencesData.getCollection("recent.sketches")); |
| 644 | sketches.remove(path); |
| 645 | PreferencesData.setCollection("recent.sketches", sketches); |
| 646 | } |
| 647 | |
| 648 | // Because of variations in native windowing systems, no guarantees about |
| 649 | // changes to the focused and active Windows can be made. Developers must |
no test coverage detected