fixed all compile errors, what's next?

This commit is contained in:
benfry
2004-05-16 19:46:14 +00:00
parent f9cb7c759a
commit 14ac186599
6 changed files with 58 additions and 38 deletions

View File

@@ -59,7 +59,9 @@ public class PdeCompiler implements PdeMessageConsumer {
public PdeCompiler() { } // consider this a warning, you werkin soon.
public boolean compile(PdeSketch sketch, String buildPath) {
public boolean compile(PdeSketch sketch, String buildPath)
throws PdeException {
this.sketch = sketch;
this.buildPath = buildPath;
@@ -261,11 +263,10 @@ public class PdeCompiler implements PdeMessageConsumer {
static public String calcBootClassPath() {
if (bootClassPath == null) {
String additional = "";
if (PdeBase.platform == PdeBase.MACOSX) {
additional =
contentsToClassPath(new File("/System/Library/Java/Extensions/"));
} else {
additional = "";
}
bootClassPath = System.getProperty("sun.boot.class.path") + additional;
}