--- /home/cpdev/src/classpath/java/awt/Container.java	2005-07-06 17:33:10.000000000 +0000
+++ java/awt/Container.java	2005-06-30 05:34:25.000000000 +0000
@@ -269,7 +269,7 @@
    *
    * @return The same component that was added.
    *
-   * @throws ArrayIndexOutOfBoundsException If the specified index is invalid.
+   * @throws ArrayIndexOutOfBounds If the specified index is invalid.
    */
   public Component add(Component comp, int index)
   {
@@ -300,7 +300,7 @@
    * @param index The index in the component list to insert this child
    * at, or -1 to add at the end of the list.
    *
-   * @throws ArrayIndexOutOfBoundsException If the specified index is invalid.
+   * @throws ArrayIndexOutOfBounds If the specified index is invalid.
    */
   public void add(Component comp, Object constraints, int index)
   {
@@ -320,7 +320,7 @@
    * @param index The index in the component list to insert this child
    * at, or -1 to add at the end of the list.
    *
-   * @throws ArrayIndexOutOfBoundsException If the specified index is invalid.
+   * @throws ArrayIndexOutOfBounds If the specified index is invalid.
    */
   protected void addImpl(Component comp, Object constraints, int index)
   {
@@ -436,7 +436,7 @@
   /**
    * Removes the specified component from this container.
    *
-   * @param comp The component to remove from this container.
+   * @return component The component to remove from this container.
    */
   public void remove(Component comp)
   {
@@ -1367,7 +1367,7 @@
    * however, ContainerOrderFocusTraversalPolicy is in effect, and it
    * supports implicit down-cycle traversal operations.
    *
-   * @param focusCycleRoot true if this is a focus cycle root, false otherwise
+   * @return true if this is a focus cycle root, false otherwise
    *
    * @since 1.4
    */
@@ -1873,7 +1873,6 @@
   private transient Component mouseEventTarget;
   private transient Component pressedComponent;
   private transient Component lastComponentEntered;
-  private transient Component tempComponent;
   private transient int pressCount;
   
   LightweightDispatcher(Container c)
@@ -1928,9 +1927,7 @@
                                               me.getClickCount (),
                                               me.isPopupTrigger (),
                                               me.getButton ());
-          tempComponent = lastComponentEntered;
-          lastComponentEntered = null;
-          tempComponent.dispatchEvent(exited);
+          lastComponentEntered.dispatchEvent (exited); 
         }
         lastComponentEntered = null;
       }
