Is any of the files in this sketch modified?
()
| 211 | * Is any of the files in this sketch modified? |
| 212 | */ |
| 213 | public boolean isModified() { |
| 214 | for (SketchFile file : files) { |
| 215 | if (file.isModified()) |
| 216 | return true; |
| 217 | } |
| 218 | return false; |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Finds the file with the given filename and returns its index. |
no test coverage detected