< prev index next >

src/java.desktop/share/classes/sun/applet/AppletSecurity.java

Print this page

        

@@ -107,11 +107,12 @@
     }
 
     /**
      * get the current (first) instance of an AppletClassLoader on the stack.
      */
-    @SuppressWarnings("deprecation")
+    @SuppressWarnings({"deprecation",
+                       "removal"}) // SecurityManager.currentClassLoader()
     private AppletClassLoader currentAppletClassLoader()
     {
         // try currentClassLoader first
         ClassLoader loader = currentClassLoader();
 

@@ -296,11 +297,12 @@
      *
      * @since   1.1
      * @exception  SecurityException  if the caller does not have
      *             permission to access the AWT event queue.
      */
-    @SuppressWarnings("deprecation")
+    @SuppressWarnings({"deprecation",
+                       "removal"}) //  SecurityManager.checkAwtEventQueueAccess
     public void checkAwtEventQueueAccess() {
         AppContext appContext = AppContext.getAppContext();
         AppletClassLoader appletClassLoader = currentAppletClassLoader();
 
         if (AppContext.isMainContext(appContext) && (appletClassLoader != null)) {
< prev index next >