remove addl debug chatter

This commit is contained in:
benfry
2011-01-26 22:51:28 +00:00
parent 2ddca09981
commit 212d02bdeb
5 changed files with 30 additions and 26 deletions

View File

@@ -155,8 +155,8 @@ public class JavaBuild {
this.srcFolder = srcFolder;
this.binFolder = binFolder;
Base.openFolder(srcFolder);
Base.openFolder(binFolder);
// Base.openFolder(srcFolder);
// Base.openFolder(binFolder);
// run the preprocessor
String classNameFound = preprocess(srcFolder);
@@ -647,7 +647,8 @@ public class JavaBuild {
// if (codeLine == -1 && !dotJavaFilename.equals(name + ".java")) {
// return null;
// }
return new SketchException(message, codeIndex, codeLine);
// return new SketchException(message, codeIndex, codeLine);
return new SketchException(message, codeIndex, codeLine, -1, false); // changed for 0194 for compile errors, but...
}