(Editor editor, String index)
| 596 | } |
| 597 | |
| 598 | private void storeSketchLocation(Editor editor, String index) { |
| 599 | String path = editor.getSketch().getMainFilePath(); |
| 600 | String loc = StringUtils.join(editor.getPlacement(), ','); |
| 601 | PreferencesData.set("last.sketch" + index + ".path", path); |
| 602 | PreferencesData.set("last.sketch" + index + ".location", loc); |
| 603 | } |
| 604 | |
| 605 | private int[] retrieveSketchLocation(String index) { |
| 606 | if (PreferencesData.get("last.screen.height") == null) |
no test coverage detected