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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to