* java/lang/Float.java (static): Removed.
From-SVN: r73805
This commit is contained in:
parent
23a44080b7
commit
4716418ffe
2 changed files with 5 additions and 14 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-11-21 Mark Wielaard <mark@klomp.org>
|
||||||
|
|
||||||
|
* java/lang/Float.java (static): Removed.
|
||||||
|
|
||||||
2003-11-18 Graydon Hoare <graydon@redhat.com>
|
2003-11-18 Graydon Hoare <graydon@redhat.com>
|
||||||
|
|
||||||
* java/awt/font/TextLayout.java: Implement simple layouts
|
* java/awt/font/TextLayout.java: Implement simple layouts
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* Float.java -- object wrapper for float
|
/* Float.java -- object wrapper for float
|
||||||
Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GNU Classpath.
|
This file is part of GNU Classpath.
|
||||||
|
|
||||||
|
@ -38,8 +38,6 @@ exception statement from your version. */
|
||||||
|
|
||||||
package java.lang;
|
package java.lang;
|
||||||
|
|
||||||
import gnu.classpath.Configuration;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Instances of class <code>Float</code> represent primitive
|
* Instances of class <code>Float</code> represent primitive
|
||||||
* <code>float</code> values.
|
* <code>float</code> values.
|
||||||
|
@ -101,17 +99,6 @@ public final class Float extends Number implements Comparable
|
||||||
*/
|
*/
|
||||||
private final float value;
|
private final float value;
|
||||||
|
|
||||||
/**
|
|
||||||
* Load native routines necessary for this class.
|
|
||||||
*/
|
|
||||||
static
|
|
||||||
{
|
|
||||||
if (Configuration.INIT_LOAD_LIBRARY)
|
|
||||||
{
|
|
||||||
System.loadLibrary("javalang");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a <code>Float</code> from the primitive <code>float</code>
|
* Create a <code>Float</code> from the primitive <code>float</code>
|
||||||
* specified.
|
* specified.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue