+2004-03-11 Michael Koch <konqueror@gmx.de>
+
+ * gnu/java/awt/peer/ClasspathFontPeer.java:
+ Fixed javadoc to be correct xhtml.
+ * gnu/java/awt/peer/gtk/GtkArgList.java
+ (add): Use Boolean.valueOf() instead of new Boolean().
+
2004-03-09 Michael Koch <konqueror@gmx.de>
* java/lang/Thread.java
* <p><b>State kept by the peer:</b> a peer is generated for each Font
* object in the default implementation. If you wish to share peers between
* fonts, you will need to subclass both ClasspathFontPeer and
- * {@link ClasspathToolKit}.
+ * {@link ClasspathToolKit}.</p>
*
* <p><b>Thread Safety:</b> Methods of this interface may be called
* from arbitrary threads at any time. Implementations of the
* <code>ClasspathFontPeer</code> interface are required to perform
- * the necessary synchronization.
+ * the necessary synchronization.</p>
*
* @see java.awt.Font#getPeer
* @see java.awt.Toolkit#getFontPeer
void add (String name, boolean value)
{
- addElement (new GtkArg (name, new Boolean (value)));
+ addElement (new GtkArg (name, Boolean.valueOf(value)));
}
void add (String name, int value)