-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta
-
generic
-
generic
Name: mlR10151 Date: 03/22/2001
The descriptions for the FileCacheImageInputStream(InputStream stream, File cacheDir)
says:
. . .
Throws:
IllegalArgumentException - if stream is null.
. . .
But it does not throw IllegalArgumentException as expected:
===================== a.java =======================
import javax.imageio.stream.FileCacheImageInputStream;
public class a {
public static void main (String argv[]) throws Exception {
try {
FileCacheImageInputStream fciis = new FileCacheImageInputStream(null, null);
System.out.println("FAILED");
} catch (IllegalArgumentException e) {
System.out.println("PASSED");
} catch (Throwable e) {
System.out.println("FAILED");
}
}
}
===================== log =======================
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b56)
Java HotSpot(TM) Client VM (build 1.4-beta-B56, mixed mode)
FAILED
======================================================================