I filled empty blocks (like method bodies) in javax.swing.colorchoosers
with comments either stating that this does nothing or needs to be
implemented.

2005-10-18  Roman Kennke  <[EMAIL PROTECTED]>

        * javax/swing/colorchooser/AbstractColorChooserPanel.java:
        * javax/swing/colorchooser/ColorChooserComponentFactory.java:
        * javax/swing/colorchooser/DefaultSwatchChooserPanel.java:
        Filled empty blocks with comments.


/Roman
Index: javax/swing/colorchooser/AbstractColorChooserPanel.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/colorchooser/AbstractColorChooserPanel.java,v
retrieving revision 1.6
diff -u -r1.6 AbstractColorChooserPanel.java
--- javax/swing/colorchooser/AbstractColorChooserPanel.java	2 Jul 2005 20:32:49 -0000	1.6
+++ javax/swing/colorchooser/AbstractColorChooserPanel.java	18 Oct 2005 20:28:28 -0000
@@ -64,7 +64,8 @@
    */
   public AbstractColorChooserPanel()
   {
-  } // AbstractColorChooserPanel()
+    // Nothing to do here.
+  }
 
   /**
    * This method returns the name displayed in the tab for this chooser panel.
Index: javax/swing/colorchooser/ColorChooserComponentFactory.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/colorchooser/ColorChooserComponentFactory.java,v
retrieving revision 1.4
diff -u -r1.4 ColorChooserComponentFactory.java
--- javax/swing/colorchooser/ColorChooserComponentFactory.java	2 Jul 2005 20:32:49 -0000	1.4
+++ javax/swing/colorchooser/ColorChooserComponentFactory.java	18 Oct 2005 20:28:28 -0000
@@ -53,7 +53,8 @@
    */
   private ColorChooserComponentFactory()
   {
-  } // ColorChooserComponentFactory()
+    // Nothing to do here.
+  }
 
   /**
    * This method returns the three default chooser panels to be used in
Index: javax/swing/colorchooser/DefaultSwatchChooserPanel.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/colorchooser/DefaultSwatchChooserPanel.java,v
retrieving revision 1.5
diff -u -r1.5 DefaultSwatchChooserPanel.java
--- javax/swing/colorchooser/DefaultSwatchChooserPanel.java	2 Jul 2005 20:32:49 -0000	1.5
+++ javax/swing/colorchooser/DefaultSwatchChooserPanel.java	18 Oct 2005 20:28:28 -0000
@@ -587,6 +587,7 @@
      */
     public void addLayoutComponent(String name, Component comp)
     {
+      // Nothing to do here.
     }
 
     /**
@@ -634,6 +635,7 @@
      */
     public void removeLayoutComponent(Component comp)
     {
+      // Nothing to do here.
     }
 
     /**
@@ -786,6 +788,7 @@
    */
   public void updateChooser()
   {
+    // Nothing to do here yet.
   }
 
   /**
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to