* java/lang/System.java: Add GCJ LOCAL note about encoding aliases.
From-SVN: r71710
This commit is contained in:
parent
3ffa9dc1b5
commit
d0010eed54
2 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
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",
|
||||
|
|
Loading…
Add table
Reference in a new issue