Author: sebb Date: Tue Nov 23 12:47:10 2010 New Revision: 1038088 URL: http://svn.apache.org/viewvc?rev=1038088&view=rev Log: SuppressWarning no longer needed
Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/util/MonitorOutputStream.java Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/util/MonitorOutputStream.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/util/MonitorOutputStream.java?rev=1038088&r1=1038087&r2=1038088&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/util/MonitorOutputStream.java (original) +++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/util/MonitorOutputStream.java Tue Nov 23 12:47:10 2010 @@ -148,7 +148,7 @@ public class MonitorOutputStream * Called after this stream is closed. This implementation does nothing. * @throws IOException if an error occurs. */ - @SuppressWarnings("unused") // IOException is needed because subclasses may need to throw it + // IOException is needed because subclasses may need to throw it protected void onClose() throws IOException { }