diff --git a/src/java/org/apache/commons/lang/text/Interpolation.java b/src/java/org/apache/commons/lang/text/Interpolation.java index d4ab1e4a5..e0241aecd 100644 --- a/src/java/org/apache/commons/lang/text/Interpolation.java +++ b/src/java/org/apache/commons/lang/text/Interpolation.java @@ -21,6 +21,17 @@ public class Interpolation { /** The marker used to end a variable. */ private static final String SYMBOLIC_VALUE_MARKER_END = "}"; + /** + *

Interpolation instances should NOT be constructed in + * standard programming. + * + *

This constructor is public to permit tools that require a JavaBean + * instance to operate.

+ */ + public Interpolation() { + // no init. + } + /** *

Interpolates a String to replace variables of the form ${...}.

*