Commit d0010eed by Nathanael Nerode

* java/lang/System.java: Add GCJ LOCAL note about encoding aliases.

From-SVN: r71710
parent 3ffa9dc1
2003-09-23 Nathanael Nerode <neroden@gcc.gnu.org>
* java/lang/System.java: Add GCJ LOCAL note about encoding aliases.
* java/lang/Float.java, java/lang/Double.java: Add GCJ LOCAL
markers.
......
......@@ -99,6 +99,11 @@ public final class System
defaultProperties.put("gnu.cpu.endian",
isWordsBigEndian() ? "big" : "little");
// GCJ LOCAL: Classpath sets common encoding aliases here.
// Since we don't (yet) have gnu.java.io.EncodingManager, these
// are a waste of time and just slow down system startup.
// XXX FIXME - Temp hack for old systems that set the wrong property
if (defaultProperties.get("java.io.tmpdir") == null)
defaultProperties.put("java.io.tmpdir",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment