mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-18 07:20:25 +08:00
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
This commit is contained in:
parent
30fc3df7fc
commit
1f2b471546
libjava
@ -1,3 +1,10 @@
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user