people, todos, and tweak for os9

This commit is contained in:
benfry
2003-01-06 22:10:09 +00:00
parent 9ed927e9e9
commit d996f2d08f
2 changed files with 16 additions and 0 deletions

View File

@@ -1589,7 +1589,14 @@ afterwards, some of these steps need a cleanup function
String urlstr = url.getFile();
urlstr = urlstr.substring(0, urlstr.lastIndexOf("/") + 1) +
"sketch.properties";
#ifdef JDK13
// the ifdef is weird, but it's set for everything but
// macos9, and this will never get hit
output = new FileOutputStream(URLDecoder.decode(urlstr));
#else
System.err.println("bad error while writing sketch.properties");
System.err.println("you should never see this message");
#endif
}
//url = new URL(urlstr + "sketch.properties");