Author: michiel
Date: 2009-05-29 15:38:43 +0200 (Fri, 29 May 2009)
New Revision: 35522
Modified:
mmbase/trunk/src/org/mmbase/util/ReaderInputStream.java
Log:
Added @Overrids' only
Modified: mmbase/trunk/src/org/mmbase/util/ReaderInputStream.java
===================================================================
--- mmbase/trunk/src/org/mmbase/util/ReaderInputStream.java 2009-05-29
13:38:09 UTC (rev 35521)
+++ mmbase/trunk/src/org/mmbase/util/ReaderInputStream.java 2009-05-29
13:38:43 UTC (rev 35522)
@@ -151,6 +151,7 @@
* @param limit the maximum limit of bytes that can be read before the
* mark position becomes invalid
*/
+ @Override
public synchronized void mark(final int limit) {
try {
in.mark(limit);
@@ -164,6 +165,7 @@
* @return the current number of bytes ready for reading
* @exception IOException if an error occurs
*/
+ @Override
public synchronized int available() throws IOException {
if (in == null) {
throw new IOException("Stream Closed");
@@ -181,6 +183,7 @@
/**
* @return false - mark is not supported
*/
+ @Override
public boolean markSupported () {
return false; // would be imprecise
}
@@ -190,6 +193,7 @@
*
* @exception IOException if the StringReader fails to be reset
*/
+ @Override
public synchronized void reset() throws IOException {
if (in == null) {
throw new IOException("Stream Closed");
@@ -203,6 +207,7 @@
*
* @exception IOException if the original StringReader fails to be closed
*/
+ @Override
public synchronized void close() throws IOException {
in.close();
slack = null;
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs