Index: javax/swing/JLabel.java =================================================================== RCS file: /cvsroot/classpath/classpath/javax/swing/JLabel.java,v retrieving revision 1.22 diff -U3 -r1.22 JLabel.java --- javax/swing/JLabel.java 2 Jul 2005 20:32:47 -0000 1.22 +++ javax/swing/JLabel.java 5 Jul 2005 12:13:59 -0000 @@ -101,14 +101,14 @@ } /** - * Creates a new vertically centered, horizontally on the leading edge + * Creates a new vertically and horizontally centered * JLabel object with no text and the given icon. * * @param image The icon to use with the label. */ public JLabel(Icon image) { - this(null, image, LEADING); + this(null, image, CENTER); } /**