Made constants public for easier access from subclasses or wrappers.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@291996 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d1f5ebf412
commit
3bac0b1b17
|
@ -465,13 +465,13 @@ public class VariableFormatter {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Constant for the default escape character. */
|
/** Constant for the default escape character. */
|
||||||
static final char DEFAULT_ESCAPE = '$';
|
public static final char DEFAULT_ESCAPE = '$';
|
||||||
|
|
||||||
/** Constant for the default variable prefix. */
|
/** Constant for the default variable prefix. */
|
||||||
static final String DEFAULT_PREFIX = "${";
|
public static final String DEFAULT_PREFIX = "${";
|
||||||
|
|
||||||
/** Constant for the default variable suffix. */
|
/** 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
|
* Replaces the occurrences of all variables in the given source data by their current values obtained from the
|
||||||
|
|
Loading…
Reference in New Issue