Repository: commons-crypto Updated Branches: refs/heads/master a289ecd26 -> 4ca3724bc
Replace old school @exception with new school @throws. Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/4d49af4a Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/4d49af4a Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/4d49af4a Branch: refs/heads/master Commit: 4d49af4a2148f93e6fc34b43509fd694e7edb3a7 Parents: f54e331 Author: ggregory <[email protected]> Authored: Mon Jun 6 17:41:29 2016 -0700 Committer: ggregory <[email protected]> Committed: Mon Jun 6 17:41:29 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/commons/crypto/stream/input/Input.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/4d49af4a/src/main/java/org/apache/commons/crypto/stream/input/Input.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/crypto/stream/input/Input.java b/src/main/java/org/apache/commons/crypto/stream/input/Input.java index c8e2f63..fff7e1d 100644 --- a/src/main/java/org/apache/commons/crypto/stream/input/Input.java +++ b/src/main/java/org/apache/commons/crypto/stream/input/Input.java @@ -72,7 +72,7 @@ public interface Input { * * @param n the number of bytes to be skipped. * @return the actual number of bytes skipped. - * @exception IOException if the stream does not support seek, or if some + * @throws IOException if the stream does not support seek, or if some * other I/O error occurs. */ long skip(long n) throws IOException; @@ -91,7 +91,7 @@ public interface Input { * @return an estimate of the number of bytes that can be read (or skipped * over) from this input stream without blocking or {@code 0} when * it reaches the end of the input stream. - * @exception IOException if an I/O error occurs. + * @throws IOException if an I/O error occurs. */ int available() throws IOException; @@ -131,7 +131,7 @@ public interface Input { * Closes this input and releases any system resources associated with the * under layer input. * - * @exception IOException if an I/O error occurs. + * @throws IOException if an I/O error occurs. */ void close() throws IOException; }
