1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Remove SketchData.setName()

It was not used, and since it only updated the `name` attribute, but not
the corresponding `file` attribute, nor actually handled renaming actual
files, having this method around would actually be harmful, so just drop
it.
This commit is contained in:
Matthijs Kooijman 2015-12-08 16:49:31 +01:00 committed by Martino Facchin
parent 6c2a94ecc5
commit ab14c63f58

View File

@ -248,10 +248,6 @@ public class SketchData {
return name;
}
public void setName(String name) {
this.name = name;
}
public void clearCodeDocs() {
codes.clear();
}