You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by gg...@apache.org on 2005/09/27 19:37:42 UTC

svn commit: r291996 - /jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/text/VariableFormatter.java

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