You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/06/07 02:19:12 UTC

svn commit: r1747114 - in /commons/proper/io/trunk/src/main/java/org/apache/commons/io/output: DeferredFileOutputStream.java ThresholdingOutputStream.java

Author: ggregory
Date: Tue Jun  7 02:19:12 2016
New Revision: 1747114

URL: http://svn.apache.org/viewvc?rev=1747114&view=rev
Log:
Update old school @exception with new school @throws.

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java?rev=1747114&r1=1747113&r2=1747114&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java Tue Jun  7 02:19:12 2016
@@ -153,7 +153,7 @@ public class DeferredFileOutputStream
      *
      * @return The underlying output stream.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     protected OutputStream getStream() throws IOException
@@ -168,7 +168,7 @@ public class DeferredFileOutputStream
      * much data is being written to keep in memory, so we elect to switch to
      * disk-based storage.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     protected void thresholdReached() throws IOException
@@ -245,7 +245,7 @@ public class DeferredFileOutputStream
     /**
      * Closes underlying output stream, and mark this as closed
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void close() throws IOException
@@ -260,7 +260,7 @@ public class DeferredFileOutputStream
      * after it has been closed.
      *
      * @param out output stream to write to.
-     * @exception IOException if this stream is not yet closed or an error occurs.
+     * @throws IOException if this stream is not yet closed or an error occurs.
      */
     public void writeTo(final OutputStream out) throws IOException
     {

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java?rev=1747114&r1=1747113&r2=1747114&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java Tue Jun  7 02:19:12 2016
@@ -84,7 +84,7 @@ public abstract class ThresholdingOutput
      *
      * @param b The byte to be written.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void write(final int b) throws IOException
@@ -101,7 +101,7 @@ public abstract class ThresholdingOutput
      *
      * @param b The array of bytes to be written.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void write(final byte b[]) throws IOException
@@ -120,7 +120,7 @@ public abstract class ThresholdingOutput
      * @param off The start offset in the byte array.
      * @param len The number of bytes to write.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void write(final byte b[], final int off, final int len) throws IOException
@@ -135,7 +135,7 @@ public abstract class ThresholdingOutput
      * Flushes this output stream and forces any buffered output bytes to be
      * written out.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void flush() throws IOException
@@ -148,7 +148,7 @@ public abstract class ThresholdingOutput
      * Closes this output stream and releases any system resources associated
      * with this stream.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     @Override
     public void close() throws IOException
@@ -214,7 +214,7 @@ public abstract class ThresholdingOutput
      * @param count The number of bytes about to be written to the underlying
      *              output stream.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     protected void checkThreshold(final int count) throws IOException
     {
@@ -258,7 +258,7 @@ public abstract class ThresholdingOutput
      *
      * @return The underlying output stream.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     protected abstract OutputStream getStream() throws IOException;
 
@@ -268,7 +268,7 @@ public abstract class ThresholdingOutput
      * subclass should take whatever action necessary on this event. This may
      * include changing the underlying output stream.
      *
-     * @exception IOException if an error occurs.
+     * @throws IOException if an error occurs.
      */
     protected abstract void thresholdReached() throws IOException;
 }