-
Bug
-
Resolution: Fixed
-
P4
-
5.0, 6
-
b33
-
x86, sparc
-
solaris_9, windows_2000
The javadoc of the method read(byte b[], int off, int len) declares:
* If the first argument is <code>null</code>,
* up to <code>len</code> bytes are read and discarded.
but the implementation does:
} else if (b == null) {
throw new NullPointerException();
By checking the class implementation, I belive that what the javadoc declares is not implemented.
###@###.### 2005-03-22 13:12:30 GMT
* If the first argument is <code>null</code>,
* up to <code>len</code> bytes are read and discarded.
but the implementation does:
} else if (b == null) {
throw new NullPointerException();
By checking the class implementation, I belive that what the javadoc declares is not implemented.
###@###.### 2005-03-22 13:12:30 GMT
- duplicates
-
JDK-5064187 (spec) SequenceInputStream.read spec does not match impl when byte[] == null
-
- Closed
-