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 2284F200CD1 for ; Tue, 20 Jun 2017 12:45:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 210B1160BE1; Tue, 20 Jun 2017 10:45:25 +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 4F0F8160BF5 for ; Tue, 20 Jun 2017 12:45:24 +0200 (CEST) Received: (qmail 38113 invoked by uid 500); 20 Jun 2017 10:45:23 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 37631 invoked by uid 99); 20 Jun 2017 10:45:21 -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; Tue, 20 Jun 2017 10:45:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DF7B6E03B3; Tue, 20 Jun 2017 10:45:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: lukaszlenart@apache.org To: commits@struts.apache.org Date: Tue, 20 Jun 2017 10:45:24 -0000 Message-Id: <003b6a4c92c94fb49eb4cbac5d87dc8e@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [5/6] struts git commit: Marks class as deprecated archived-at: Tue, 20 Jun 2017 10:45:25 -0000 Marks class as deprecated Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/31f0252e Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/31f0252e Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/31f0252e Branch: refs/heads/master Commit: 31f0252e60dabaec0fef77112c464b768c877f52 Parents: 05f3b7a Author: Lukasz Lenart Authored: Tue Jun 20 09:45:55 2017 +0200 Committer: Lukasz Lenart Committed: Tue Jun 20 09:45:55 2017 +0200 ---------------------------------------------------------------------- .../src/main/java/com/opensymphony/xwork2/inject/util/Strings.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/31f0252e/core/src/main/java/com/opensymphony/xwork2/inject/util/Strings.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/com/opensymphony/xwork2/inject/util/Strings.java b/core/src/main/java/com/opensymphony/xwork2/inject/util/Strings.java index a15291a..d138e21 100644 --- a/core/src/main/java/com/opensymphony/xwork2/inject/util/Strings.java +++ b/core/src/main/java/com/opensymphony/xwork2/inject/util/Strings.java @@ -21,6 +21,7 @@ package com.opensymphony.xwork2.inject.util; * * @author crazybob@google.com (Bob Lee) */ +@Deprecated public class Strings { /** @@ -43,6 +44,7 @@ public class Strings { * converted to uppercase * @throws NullPointerException if s is null */ + @Deprecated public static String capitalize(String s) { if (s.length() == 0) return s;