()
| 133 | } |
| 134 | |
| 135 | public void save() throws IOException { |
| 136 | for (SketchFile file : getFiles()) { |
| 137 | if (file.isModified()) |
| 138 | file.save(); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | public int getCodeCount() { |
| 143 | return files.size(); |
nothing calls this directly
no test coverage detected