static method made public

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1147090 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2011-07-15 11:00:43 +00:00
parent 80d436e29f
commit ee46aba2c0
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ public class DOMUtil {
* This method borrowed from Ant's PropertyHelper.replaceProperties:
* http://svn.apache.org/repos/asf/ant/core/trunk/src/main/org/apache/tools/ant/PropertyHelper.java
*/
private static String substituteProperty(String value, Properties coreProperties) {
public static String substituteProperty(String value, Properties coreProperties) {
if (value == null || value.indexOf('$') == -1) {
return value;
}