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 47A44200C47 for ; Thu, 30 Mar 2017 18:36:31 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4632E160B8B; Thu, 30 Mar 2017 16:36:31 +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 B8009160B7E for ; Thu, 30 Mar 2017 18:36:30 +0200 (CEST) Received: (qmail 56764 invoked by uid 500); 30 Mar 2017 16:36:29 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 56755 invoked by uid 99); 30 Mar 2017 16:36:29 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Mar 2017 16:36:29 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id BF04A3A0112 for ; Thu, 30 Mar 2017 16:36:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1789539 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java Date: Thu, 30 Mar 2017 16:36:28 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170330163628.BF04A3A0112@svn01-us-west.apache.org> archived-at: Thu, 30 Mar 2017 16:36:31 -0000 Author: sebb Date: Thu Mar 30 16:36:28 2017 New Revision: 1789539 URL: http://svn.apache.org/viewvc?rev=1789539&view=rev Log: Don't use @since with private methods Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java?rev=1789539&r1=1789538&r2=1789539&view=diff ============================================================================== --- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java (original) +++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/StringUtils.java Thu Mar 30 16:36:28 2017 @@ -105,7 +105,6 @@ public class StringUtils { * @param charset * The {@link Charset} to encode the String * @return the encoded bytes - * @since 1.11 */ private static ByteBuffer getByteBuffer(final String string, final Charset charset) { if (string == null) {