view patches/security/icedtea-6656610.patch @ 1560:3b93da7c778a icedtea6-1.5.1

2009-08-07 Lillian Angel <langel@redhat.com> * NEWS: Updated. * Makefile.am: Added new security patches. * plugin/icedtea/netscape/javascript/JSObject.java: Security patch applied to disallow the ability to run unsigned code as signed under some cases. * plugin/icedtea/sun/applet/PluginAppletSecurityContext.java: * Likewise. * rt/net/sourceforge/jnlp/SecurityDesc.java: Likewise. * rt/net/sourceforge/jnlp/runtime/JNLPClassLoader.java: Likewise. * plugin/icedtea/netscape/javascript/JSObjectCreatePermission.java: * Likewise. * rt/netscape/javascript/JSObjectCreatePermission.java: Likewise. * patches/security/icedtea-6588003.patch, patches/security/icedtea-6656586.patch, patches/security/icedtea-6656610.patch, patches/security/icedtea-6656625.patch, patches/security/icedtea-6657133.patch, patches/security/icedtea-6657619.patch, patches/security/icedtea-6657625.patch, patches/security/icedtea-6657695.patch, patches/security/icedtea-6660049.patch, patches/security/icedtea-6660539.patch, patches/security/icedtea-6736293.patch, patches/security/icedtea-6738524.patch, patches/security/icedtea-6777448.patch, patches/security/icedtea-6777487.patch, patches/security/icedtea-6801071.patch, patches/security/icedtea-6801497.patch, patches/security/icedtea-6813167.patch, patches/security/icedtea-6823373.patch, patches/security/icedtea-6824440.patch, patches/security/icedtea-6830335.patch, patches/security/icedtea-6845701.patch: New security patches.
author langel
date Fri, 07 Aug 2009 10:05:32 -0400
parents
children
line wrap: on
line source

--- old/src/share/classes/javax/accessibility/AccessibleResourceBundle.java	Fri Jun 19 15:30:16 2009
+++ openjdk/jdk/src/share/classes/javax/accessibility/AccessibleResourceBundle.java	Fri Jun 19 15:30:14 2009
@@ -44,15 +44,11 @@
      * localized display strings.
      */
     public Object[][] getContents() {
-        return contents;
-    }
+        // The table holding the mapping between the programmatic keys
+        // and the display strings for the en_US locale.
+        return new Object[][] {
 
-    /**
-     * The table holding the mapping between the programmatic keys
-     * and the display strings for the en_US locale.
-     */
-    static final Object[][] contents = {
-    // LOCALIZE THIS
+        // LOCALIZE THIS
         // Role names
 //        { "application","application" },
 //        { "border","border" },
@@ -151,5 +147,6 @@
         { "vertical","vertical" },
         { "horizontal","horizontal" }
     // END OF MATERIAL TO LOCALIZE
-    };
+        };
+    }
 }