You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2018/08/13 23:52:50 UTC

httpcomponents-core git commit: Add @since tags.

Repository: httpcomponents-core
Updated Branches:
  refs/heads/master fae7e6a74 -> 8e807630a


Add @since tags.

Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/8e807630
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/8e807630
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/8e807630

Branch: refs/heads/master
Commit: 8e807630a1d69403be643abf532ea703dc8835af
Parents: fae7e6a
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon Aug 13 17:52:46 2018 -0600
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon Aug 13 17:52:46 2018 -0600

----------------------------------------------------------------------
 .../java/org/apache/hc/core5/http/ConnectionClosedException.java   | 2 ++
 .../java/org/apache/hc/core5/http/TruncatedChunkException.java     | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/8e807630/httpcore5/src/main/java/org/apache/hc/core5/http/ConnectionClosedException.java
----------------------------------------------------------------------
diff --git a/httpcore5/src/main/java/org/apache/hc/core5/http/ConnectionClosedException.java b/httpcore5/src/main/java/org/apache/hc/core5/http/ConnectionClosedException.java
index 7c684d6..e24f06a 100644
--- a/httpcore5/src/main/java/org/apache/hc/core5/http/ConnectionClosedException.java
+++ b/httpcore5/src/main/java/org/apache/hc/core5/http/ConnectionClosedException.java
@@ -59,6 +59,8 @@ public class ConnectionClosedException extends IOException {
      *
      * @param format The exception detail message format; see {@link String#format(String, Object...)}.
      * @param args The exception detail message arguments; see {@link String#format(String, Object...)}.
+     *
+     * @since 5.0
      */
     public ConnectionClosedException(final String format, final Object... args) {
         super(HttpException.clean(String.format(format, args)));

http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/8e807630/httpcore5/src/main/java/org/apache/hc/core5/http/TruncatedChunkException.java
----------------------------------------------------------------------
diff --git a/httpcore5/src/main/java/org/apache/hc/core5/http/TruncatedChunkException.java b/httpcore5/src/main/java/org/apache/hc/core5/http/TruncatedChunkException.java
index 3edf243..7e3b679 100644
--- a/httpcore5/src/main/java/org/apache/hc/core5/http/TruncatedChunkException.java
+++ b/httpcore5/src/main/java/org/apache/hc/core5/http/TruncatedChunkException.java
@@ -50,6 +50,8 @@ public class TruncatedChunkException extends MalformedChunkCodingException {
      *
      * @param format The exception detail message format; see {@link String#format(String, Object...)}.
      * @param args The exception detail message arguments; see {@link String#format(String, Object...)}.
+     *
+     * @since 5.0
      */
     public TruncatedChunkException(final String format, final Object... args) {
         super(HttpException.clean(String.format(format, args)));