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 33A5B200B90 for ; Sun, 25 Sep 2016 21:01:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 323FB160ABE; Sun, 25 Sep 2016 19:01:50 +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 6EFFD160AE2 for ; Sun, 25 Sep 2016 21:01:49 +0200 (CEST) Received: (qmail 61417 invoked by uid 500); 25 Sep 2016 19:01:48 -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 61078 invoked by uid 99); 25 Sep 2016 19:01:48 -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; Sun, 25 Sep 2016 19:01:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C6AD4E0ADC; Sun, 25 Sep 2016 19:01:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: commits@commons.apache.org Date: Sun, 25 Sep 2016 19:01:47 -0000 Message-Id: <2e3e03178f414d63a96dae77d945a227@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/4] [lang] CharEncoding: fix dead link in class javadoc archived-at: Sun, 25 Sep 2016 19:01:50 -0000 Repository: commons-lang Updated Branches: refs/heads/master 5f4249e2e -> a04151819 CharEncoding: fix dead link in class javadoc Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/a0415181 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/a0415181 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/a0415181 Branch: refs/heads/master Commit: a04151819758fceb7f0cb855d279c9d46b2e9851 Parents: b10d58e Author: pascalschumacher Authored: Sun Sep 25 20:53:56 2016 +0200 Committer: pascalschumacher Committed: Sun Sep 25 21:00:46 2016 +0200 ---------------------------------------------------------------------- src/main/java/org/apache/commons/lang3/CharEncoding.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/a0415181/src/main/java/org/apache/commons/lang3/CharEncoding.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/lang3/CharEncoding.java b/src/main/java/org/apache/commons/lang3/CharEncoding.java index e749d02..7fe9296 100644 --- a/src/main/java/org/apache/commons/lang3/CharEncoding.java +++ b/src/main/java/org/apache/commons/lang3/CharEncoding.java @@ -30,7 +30,7 @@ import java.nio.charset.IllegalCharsetNameException; * Consult the release documentation for your implementation to see if any other encodings are supported. *

* - * @see JRE character encoding names + * @see JRE character encoding names * @since 2.1 */ public class CharEncoding { @@ -79,7 +79,6 @@ public class CharEncoding { */ public static final String UTF_8 = "UTF-8"; - //----------------------------------------------------------------------- /** *

Returns whether the named charset is supported.

*