OSDN Git Service

2003-02-19 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Feb 2003 11:41:16 +0000 (11:41 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Feb 2003 11:41:16 +0000 (11:41 +0000)
* java/awt/ScrollPaneAdjustable.java: Reformated.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63099 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/awt/ScrollPaneAdjustable.java

index 526d7de..be0801b 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-19  Michael Koch  <konqueror@gmx.de>
+
+       * java/awt/ScrollPaneAdjustable.java: Reformated.
+
 2003-02-19  Michael Koch <konqueror@gmx.de>
 
        * gnu/awt/j2d/Graphics2DImpl.java
index 62cfefc..152f4d6 100644 (file)
@@ -39,34 +39,28 @@ exception statement from your version. */
 package java.awt;
 
 /**
 * Need this class since the serialization spec for ScrollPane
 * uses it.
 *
 * @author Aaron M. Renn (arenn@urbanophile.com)
 */
+ * Need this class since the serialization spec for ScrollPane
+ * uses it.
+ *
+ * @author Aaron M. Renn (arenn@urbanophile.com)
+ */
 class ScrollPaneAdjustable extends Scrollbar
 {
+  public ScrollPaneAdjustable (int orientation)
+  {
+    super (orientation);
+  }
 
-public
-ScrollPaneAdjustable(int orientation)
-{
-  super(orientation);
-}
-
-public void
-setMaximum(int maximum)
-{
-}
+  public void setMaximum (int maximum)
+  {
+  }
 
-public void
-setMinimum(int minimum)
-{
-}
-
-public void
-setVisibleAmount(int visibleAmount)
-{
-}
+  public void setMinimum (int minimum)
+  {
+  }
 
+  public void setVisibleAmount (int visibleAmount)
+  {
+  }
 } // class ScrollPaneAdjustable