MCPcopy Index your code
hub / github.com/arduino/Arduino / isModified

Method isModified

arduino-core/src/processing/app/Sketch.java:213–219  ·  view source on GitHub ↗

Is any of the files in this sketch modified?

()

Source from the content-addressed store, hash-verified

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.

Callers 2

storeSketchesMethod · 0.95
runMethod · 0.95

Calls 1

isModifiedMethod · 0.65

Tested by

no test coverage detected