1 <p> This method ignores the return value of one of the variants of
2 <code>java.io.InputStream.read()</code> which can return multiple bytes.
3 If the return value is not checked, the caller will not be able to correctly
4 handle the case where fewer bytes were read than the caller requested.
5 This is a particularly insidious kind of bug, because in many programs,
6 reads from input streams usually do read the full amount of data requested,
7 causing the program to fail only sporadically.</p>