diff options
author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-21 13:24:28 +0000 |
---|---|---|
committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-21 13:24:28 +0000 |
commit | 65c355163033828d0521e37397677c5383570b48 (patch) | |
tree | 9b3960757382f8e1fadd01241082b1a02ea31945 | |
parent | 439d8205cfaf4c03a2cbab04396aa4efa03a5dd9 (diff) | |
download | gcc-65c355163033828d0521e37397677c5383570b48.tar.gz |
* java/lang/Float.java (static): Removed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73805 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/java/lang/Float.java | 15 |
2 files changed, 5 insertions, 14 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 463f610d226..3abf2804592 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -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> * java/awt/font/TextLayout.java: Implement simple layouts diff --git a/libjava/java/lang/Float.java b/libjava/java/lang/Float.java index d3065f6b01c..78dab61572a 100644 --- a/libjava/java/lang/Float.java +++ b/libjava/java/lang/Float.java @@ -1,5 +1,5 @@ /* 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. @@ -38,8 +38,6 @@ exception statement from your version. */ package java.lang; -import gnu.classpath.Configuration; - /** * Instances of class <code>Float</code> represent primitive * <code>float</code> values. @@ -102,17 +100,6 @@ public final class Float extends Number implements Comparable 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> * specified. * |