more code cleanup

This commit is contained in:
Manindra Moharana
2014-07-28 10:28:54 +05:30
parent 42715c6a06
commit 7bc00af4af
2 changed files with 3 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ import processing.app.Sketch;
/**
* Autosave utility for saving sketch backups in the background after
* certain intervals
*
* NOTE: This was developed as an experiment, but disabled for now.
* @author Manindra Moharana <me@mkmoharana.com>
*
*/

View File

@@ -161,7 +161,7 @@ public class CompilationChecker {
}
List<ClassFile> getResults() {
System.out.println("Calling get results");
//System.out.println("Calling get results");
return this.classes;
}
}
@@ -268,12 +268,11 @@ public class CompilationChecker {
try {
urls[i] = jarList.get(i).toURI().toURL();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
urlClassLoader = new URLClassLoader(urls);
System.out.println("URL Classloader ready");
//System.out.println("URL Classloader ready");
}
/**