Index: java/awt/Component.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/Component.java,v retrieving revision 1.83 diff -u -r1.83 Component.java --- java/awt/Component.java 2 Nov 2005 11:30:01 -0000 1.83 +++ java/awt/Component.java 2 Nov 2005 12:01:23 -0000 @@ -587,6 +587,7 @@ */ protected Component() { + // Nothing to do here. } /** @@ -977,7 +978,7 @@ { if (foreground != null) return foreground; - return parent == null ? SystemColor.windowText : parent.getForeground(); + return parent == null ? null : parent.getForeground(); } /** @@ -5571,6 +5572,7 @@ */ protected AccessibleAWTComponentHandler() { + // Nothing to do here. } /** @@ -5602,6 +5604,7 @@ */ public void componentMoved(ComponentEvent e) { + // Nothing to do here. } /** @@ -5611,6 +5614,7 @@ */ public void componentResized(ComponentEvent e) { + // Nothing to do here. } } // class AccessibleAWTComponentHandler @@ -5628,6 +5632,7 @@ */ protected AccessibleAWTFocusHandler() { + // Nothing to do here. } /**