* libjava.compile/BlankFinal.java: Removed; incorrect test.

From-SVN: r47739
This commit is contained in:
Tom Tromey 2001-12-07 00:12:56 +00:00 committed by Tom Tromey
parent 21cf0a7365
commit e94c6dee73
2 changed files with 4 additions and 16 deletions

View 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> 2001-11-02 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* libjava.lang/TLtest.xfail: New file. Needs threads. * libjava.lang/TLtest.xfail: New file. Needs threads.

View file

@ -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
}
}
}