src/java.desktop/share/classes/java/awt/AWTEventMulticaster.java

Print this page

        

@@ -377,11 +377,11 @@
         ((WindowListener)a).windowIconified(e);
         ((WindowListener)b).windowIconified(e);
     }
 
     /**
-     * Handles the windowDeiconfied event by invoking the
+     * Handles the windowDeiconified event by invoking the
      * windowDeiconified methods on listener-a and listener-b.
      * @param e the window event
      */
     public void windowDeiconified(WindowEvent e) {
         ((WindowListener)a).windowDeiconified(e);

@@ -1051,11 +1051,11 @@
             return listenerType.isInstance(l) ? 1 : 0;
         }
     }
 
     /*
-     * Recusive method which populates EventListener array a with EventListeners
+     * Recursive method which populates EventListener array a with EventListeners
      * from l.  l is usually an AWTEventMulticaster.  Bug 4513402 revealed that
      * if l differed in type from the element type of a, an ArrayStoreException
      * would occur.  Now l is only inserted into a if it's of the appropriate
      * type.  -bchristi
      */