Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 59483 invoked from network); 27 Sep 2005 17:38:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Sep 2005 17:38:06 -0000 Received: (qmail 99130 invoked by uid 500); 27 Sep 2005 17:38:04 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 98801 invoked by uid 500); 27 Sep 2005 17:38:03 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 98788 invoked by uid 500); 27 Sep 2005 17:38:03 -0000 Received: (qmail 98785 invoked by uid 99); 27 Sep 2005 17:38:02 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 27 Sep 2005 10:38:02 -0700 Received: (qmail 59331 invoked by uid 65534); 27 Sep 2005 17:37:42 -0000 Message-ID: <20050927173742.59330.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r291996 - /jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java Date: Tue, 27 Sep 2005 17:37:42 -0000 To: commons-cvs@jakarta.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ggregory Date: Tue Sep 27 10:37:38 2005 New Revision: 291996 URL: http://svn.apache.org/viewcvs?rev=291996&view=rev Log: Made constants public for easier access from subclasses or wrappers. Modified: jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java Modified: jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java?rev=291996&r1=291995&r2=291996&view=diff ============================================================================== --- jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java (original) +++ jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java Tue Sep 27 10:37:38 2005 @@ -465,13 +465,13 @@ } /** Constant for the default escape character. */ - static final char DEFAULT_ESCAPE = '$'; + public static final char DEFAULT_ESCAPE = '$'; /** Constant for the default variable prefix. */ - static final String DEFAULT_PREFIX = "${"; + public static final String DEFAULT_PREFIX = "${"; /** Constant for the default variable suffix. */ - static final String DEFAULT_SUFFIX = "}"; + public static final String DEFAULT_SUFFIX = "}"; /** * Replaces the occurrences of all variables in the given source data by their current values obtained from the --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org