BufferedReader.java: Use <=, not <&eq; to make gjdoc happy.

2004-03-19  Mark Wielaard  <mark@klomp.org>

	* java/io/BufferedReader.java: Use &lt;=, not &lt;&eq; to make gjdoc
	happy.

From-SVN: r79704
This commit is contained in:
Mark Wielaard 2004-03-19 22:46:09 +00:00 committed by Michael Koch
parent f94b08878f
commit 44b20223ef
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-03-19 Mark Wielaard <mark@klomp.org>
* java/io/BufferedReader.java: Use &lt;=, not &lt;&eq; to make gjdoc
happy.
2004-02-10 Randolph Chung <tausq@debian.org>
* configure.in: Build java for hppa target.

View File

@ -112,7 +112,7 @@ public class BufferedReader extends Reader
* @param in The subordinate stream to read from
* @param size The buffer size to use
*
* @exception IllegalArgumentException if size &lt;&eq; 0
* @exception IllegalArgumentException if size &lt;= 0
*/
public BufferedReader(Reader in, int size)
{