Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2BAFC200CAC for ; Thu, 11 May 2017 20:17:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2AB88160BCA; Thu, 11 May 2017 18:17:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8FB7D160BDC for ; Thu, 11 May 2017 20:17:38 +0200 (CEST) Received: (qmail 2988 invoked by uid 500); 11 May 2017 18:17:37 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 2166 invoked by uid 99); 11 May 2017 18:17:37 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2017 18:17:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 20EF6E9645; Thu, 11 May 2017 18:17:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: olegk@apache.org To: commits@hc.apache.org Date: Thu, 11 May 2017 18:18:17 -0000 Message-Id: <5bdf5d54a6a54e77be54bcf528dfa3a9@git.apache.org> In-Reply-To: <00250a29f93f4df58aff0a555f785e06@git.apache.org> References: <00250a29f93f4df58aff0a555f785e06@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [42/42] httpcomponents-core git commit: Add @since tag to toString() method. Local build OK. archived-at: Thu, 11 May 2017 18:17:40 -0000 Add @since tag to toString() method. Local build OK. git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpcore/branches/4.4.x@1794175 13f79535-47bb-0310-9956-ffa450edef68 Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/c1913e34 Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/c1913e34 Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/c1913e34 Branch: refs/heads/4.4.x Commit: c1913e34a66fb56327ae231301e834589ec1f442 Parents: 6cabd92 Author: Gary D. Gregory Authored: Sat May 6 19:22:52 2017 +0000 Committer: Oleg Kalnichevski Committed: Thu May 11 20:16:44 2017 +0200 ---------------------------------------------------------------------- .../main/java/org/apache/http/impl/nio/SessionHttpContext.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/c1913e34/httpcore-nio/src/main/java/org/apache/http/impl/nio/SessionHttpContext.java ---------------------------------------------------------------------- diff --git a/httpcore-nio/src/main/java/org/apache/http/impl/nio/SessionHttpContext.java b/httpcore-nio/src/main/java/org/apache/http/impl/nio/SessionHttpContext.java index c6aa3e6..21b6ed6 100644 --- a/httpcore-nio/src/main/java/org/apache/http/impl/nio/SessionHttpContext.java +++ b/httpcore-nio/src/main/java/org/apache/http/impl/nio/SessionHttpContext.java @@ -54,6 +54,9 @@ class SessionHttpContext implements HttpContext { this.iosession.setAttribute(id, obj); } + /** + * @since 4.4.7 + */ @Override public String toString() { final StringBuilder sb = new StringBuilder();