()
| 151 | |
| 152 | |
| 153 | static private File nextArchiveFile() { |
| 154 | int index = 0; |
| 155 | File backupFile; |
| 156 | do { |
| 157 | index++; |
| 158 | backupFile = new File(Base.getSketchbookFolder(), String.format("theme.%03d", index)); |
| 159 | } while (backupFile.exists()); |
| 160 | return backupFile; |
| 161 | } |
| 162 | |
| 163 | |
| 164 | static public void print() { |
no test coverage detected