Index: java/lang/System.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/lang/System.java,v retrieving revision 1.38.2.13 diff -u -r1.38.2.13 System.java --- java/lang/System.java 20 Sep 2005 18:46:28 -0000 1.38.2.13 +++ java/lang/System.java 26 Sep 2005 11:09:19 -0000 @@ -495,7 +495,7 @@ sm.checkPermission(new RuntimePermission("getenv.*")); if (environmentMap == null) { - List environ = VMSystem.environ(); + List environ = (List)VMSystem.environ(); Map variables = new EnvironmentMap(); for (String pair : environ) { Index: vm/reference/java/lang/VMSystem.java =================================================================== RCS file: /cvsroot/classpath/classpath/vm/reference/java/lang/VMSystem.java,v retrieving revision 1.10.2.6 diff -u -r1.10.2.6 VMSystem.java --- vm/reference/java/lang/VMSystem.java 2 Aug 2005 20:12:48 -0000 1.10.2.6 +++ vm/reference/java/lang/VMSystem.java 26 Sep 2005 11:09:25 -0000 @@ -143,7 +143,7 @@ * * @return a list of 'name=value' pairs. */ - static native List environ(); + static native List environ(); /** * Gets the value of an environment variable from the current