classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Classpath compilation error in javax/swing/plaf/BorderUIResource.java


From: Stephen Crawley
Subject: Classpath compilation error in javax/swing/plaf/BorderUIResource.java
Date: Mon, 09 Jun 2003 01:00:42 +1000

Michael,

Your recent changes included a change that gives compilation errors in:

  javax/swing/plaf/BorderUIResource.java

Jikes says that CompoundBorder does not provide the constructor
used by the inner class CompoundBorderUIResource.

The following patch makes the compilation error go away.  Could you
apply it (or something less bogus) ASAP 

-- Steve

Index: javax/swing/plaf/BorderUIResource.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/plaf/BorderUIResource.java,v
retrieving revision 1.6
diff -p -r1.6 BorderUIResource.java
*** javax/swing/plaf/BorderUIResource.java      7 Jun 2003 18:38:20 -0000
1.6
--- javax/swing/plaf/BorderUIResource.java      8 Jun 2003 14:43:15 -0000
*************** public class BorderUIResource
*** 150,156 ****
        public CompoundBorderUIResource(Border outsideBorder,
                                        Border insideBorder)
        {
!         super (outsideBorder, insideBorder);
        }
      }

--- 150,156 ----
        public CompoundBorderUIResource(Border outsideBorder,
                                        Border insideBorder)
        {
!         // super (outsideBorder, insideBorder);
        }
      }


 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]