don't check in without building..

This commit is contained in:
benfry
2005-08-04 14:52:53 +00:00
parent 3628bf4557
commit ca9da66f28

View File

@@ -3206,14 +3206,17 @@ public class PApplet extends Applet
filenameActual + " not " +
filename + ".");
}
}
} catch (IOException e) { }
} catch (IOException e) { }
}
// if this file is ok, may as well just load it
stream = new FileInputStream(file);
if (stream != null) return stream;
} catch (Exception e) { } // ioex or security
// have to break these out because a general Exception might
// catch the RuntimeException being thrown above
} catch (IOException ioe) {
} catch (SecurityException se) { }
}
try {