This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[PATCH] java.awt.ScrollPaneAdjustable
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Wed, 19 Feb 2003 13:54:08 +0100
- Subject: [PATCH] java.awt.ScrollPaneAdjustable
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi list,
I commited the attached patch to reformat
java.awt.ScrollPaneAdjustable.
Michael
- --
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+U35wWSOgCCdjSDsRAkhlAJ9fCsukMEiBe8EYXjTFmQm+FWso3QCfaxQb
GUkZZVeG/rHs/qZjycGBPto=
=LaE7
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1717
diff -u -r1.1717 ChangeLog
--- ChangeLog 19 Feb 2003 09:46:40 -0000 1.1717
+++ ChangeLog 19 Feb 2003 11:40:42 -0000
@@ -1,3 +1,7 @@
+2003-02-19 Michael Koch <konqueror at gmx dot de>
+
+ * java/awt/ScrollPaneAdjustable.java: Reformated.
+
2003-02-19 Michael Koch <konqueror at gmx dot de>
* gnu/awt/j2d/Graphics2DImpl.java
Index: java/awt/ScrollPaneAdjustable.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/awt/ScrollPaneAdjustable.java,v
retrieving revision 1.1
diff -u -r1.1 ScrollPaneAdjustable.java
--- java/awt/ScrollPaneAdjustable.java 9 Aug 2002 04:26:14 -0000 1.1
+++ java/awt/ScrollPaneAdjustable.java 19 Feb 2003 11:40:42 -0000
@@ -39,34 +39,28 @@
package java.awt;
/**
- * Need this class since the serialization spec for ScrollPane
- * uses it.
- *
- * @author Aaron M. Renn (arenn at urbanophile dot com)
- */
+ * Need this class since the serialization spec for ScrollPane
+ * uses it.
+ *
+ * @author Aaron M. Renn (arenn at urbanophile dot 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