Attempt to close each open sketch in preparation for quitting. @return false if canceled along the way
()
| 1018 | * @return false if canceled along the way |
| 1019 | */ |
| 1020 | protected boolean handleQuitEach() { |
| 1021 | for (Editor editor : editors) { |
| 1022 | if (!editor.checkModified()) { |
| 1023 | return false; |
| 1024 | } |
| 1025 | } |
| 1026 | return true; |
| 1027 | } |
| 1028 | |
| 1029 | |
| 1030 | // ................................................................. |
no test coverage detected