* libjava.compile/BlankFinal.java: Removed; incorrect test.
authorTom Tromey <tromey@redhat.com>
Fri, 7 Dec 2001 00:12:56 +0000 (00:12 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Fri, 7 Dec 2001 00:12:56 +0000 (00:12 +0000)
From-SVN: r47739

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.compile/BlankFinal.java [deleted file]

index 7c9fcf6081b789026eab3bf94850e80387530636..9a10b153e875b3d270ab403c68e824ce42769f34 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-06  Tom Tromey  <tromey@redhat.com>
+
+       * libjava.compile/BlankFinal.java: Removed; incorrect test.
+
 2001-11-02  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
 
        * libjava.lang/TLtest.xfail: New file. Needs threads.
diff --git a/libjava/testsuite/libjava.compile/BlankFinal.java b/libjava/testsuite/libjava.compile/BlankFinal.java
deleted file mode 100644 (file)
index be5bf8e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Test to see if "blank final" variables work.
-// From Mo DeJong <mdejong@cygnus.com>
-
-public class BlankFinal {
-    static final boolean cond;
-
-    static {
-        try
-        {
-            cond = true;
-        }
-        catch(Exception e) {
-            // do nothing
-        }
-    }
-}