who keeps letting this person check in code when they're tired?

This commit is contained in:
Ben Fry
2015-08-20 17:30:21 -04:00
parent 5c323688e6
commit 7d8b9f92c6
3 changed files with 12 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ public class JavaBuild {
private String javaLibraryPath;
/** List of library folders, as figured out during preprocessing. */
private ArrayList<Library> importedLibraries;
private List<Library> importedLibraries;
public JavaBuild(Sketch sketch) {
@@ -270,7 +270,6 @@ public class JavaBuild {
int index = bigCode.indexOf(stmt);
if (index != -1) {
bigCode.delete(index, index + stmt.length());
System.out.println("code now " + bigCode);
} else {
// TODO remove once we hit final; but prevent an exception like in
// https://github.com/processing/processing/issues/3531
@@ -645,7 +644,7 @@ public class JavaBuild {
* Get the list of imported libraries. Used by external tools like Android mode.
* @return list of library folders connected to this sketch.
*/
public ArrayList<Library> getImportedLibraries() {
public List<Library> getImportedLibraries() {
return importedLibraries;
}