151b4cc
--- sun/util/calendar/LocalGregorianCalendar.java.keiths	2007-09-07 14:48:19.000000000 -0700
151b4cc
+++ sun/util/calendar/LocalGregorianCalendar.java	2007-09-07 14:52:58.000000000 -0700
151b4cc
@@ -120,8 +120,7 @@ public class LocalGregorianCalendar exte
151b4cc
     static LocalGregorianCalendar getLocalGregorianCalendar(String name) {
151b4cc
 	Properties calendarProps = null;
151b4cc
 	try {
151b4cc
-	    String homeDir = (String) AccessController.doPrivileged(
151b4cc
-				new sun.security.action.GetPropertyAction("java.home"));
151b4cc
+  	    String homeDir = (String) System.getProperty("java.home");
151b4cc
 	    final String fname = homeDir + File.separator + "lib" + File.separator
151b4cc
 				 + "calendars.properties";
151b4cc
 	    calendarProps = (Properties) AccessController.doPrivileged(new PrivilegedExceptionAction() {
151b4cc
--- sun/util/calendar/ZoneInfoFile.java.keiths	2007-09-07 14:54:58.000000000 -0700
151b4cc
+++ sun/util/calendar/ZoneInfoFile.java	2007-09-07 14:55:36.000000000 -0700
151b4cc
@@ -1021,8 +1021,7 @@ public class ZoneInfoFile {
151b4cc
 	byte[] buffer = null;
151b4cc
 
151b4cc
 	try {
151b4cc
-	    String zi_dir = (String) AccessController.doPrivileged(
151b4cc
-			        new sun.security.action.GetPropertyAction("user.zoneinfo.dir"));
151b4cc
+	    String zi_dir = (String) System.getProperty("user.zoneinfo.dir");
151b4cc
 	    File dir = null;
151b4cc
 	    if (zi_dir != null)
151b4cc
 	      dir = new File(zi_dir);
151b4cc
@@ -1035,8 +1034,7 @@ public class ZoneInfoFile {
151b4cc
 	    }
151b4cc
 
151b4cc
 	    if (dir == null) {
151b4cc
-	      String homeDir = (String) AccessController.doPrivileged(
151b4cc
-				new sun.security.action.GetPropertyAction("java.home"));
151b4cc
+	      String homeDir = (String) System.getProperty("java.home");
151b4cc
 	      zi_dir = homeDir + File.separator + "lib" + File.separator
151b4cc
 		+ "zi";
151b4cc
 	    }