Skip to content
Snippets Groups Projects
Commit 1f2b4715 authored by Michael Koch's avatar Michael Koch Committed by Michael Koch
Browse files

ClasspathFontPeer.java: Fixed javadoc to be correct xhtml.

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().

From-SVN: r79313
parent 30fc3df7
No related branches found
No related tags found
No related merge requests found
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
......
......@@ -56,12 +56,12 @@ import gnu.java.awt.*;
* <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
......
......@@ -48,7 +48,7 @@ public class GtkArgList extends Vector
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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment