]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* java/lang/Float.java (static): Removed.
authorMark Wielaard <mark@klomp.org>
Fri, 21 Nov 2003 13:24:28 +0000 (13:24 +0000)
committerMark Wielaard <mark@gcc.gnu.org>
Fri, 21 Nov 2003 13:24:28 +0000 (13:24 +0000)
From-SVN: r73805

libjava/ChangeLog
libjava/java/lang/Float.java

index 463f610d2269d9ecc0c68607e587fb36059a5da3..3abf2804592e657d04c7d3a9478a900296d98a95 100644 (file)
@@ -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
index d3065f6b01c7cc69758306b2894781b663bb7889..78dab61572a9240360bc1aca95ce4a32871a6f2a 100644 (file)
@@ -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.
@@ -101,17 +99,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.