From 3e8f31ead006a1ed2ee744bc9b37723851c9dd22 Mon Sep 17 00:00:00 2001 From: Dawid Weiss Date: Mon, 7 May 2018 21:34:59 +0200 Subject: [PATCH] LUCENE-8261: non-recursive->recursive (javadoc update). --- .../apache/lucene/dependencies/InterpolatedProperties.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lucene/tools/src/java/org/apache/lucene/dependencies/InterpolatedProperties.java b/lucene/tools/src/java/org/apache/lucene/dependencies/InterpolatedProperties.java index 2d5ca418e46..08a8407bd31 100644 --- a/lucene/tools/src/java/org/apache/lucene/dependencies/InterpolatedProperties.java +++ b/lucene/tools/src/java/org/apache/lucene/dependencies/InterpolatedProperties.java @@ -36,7 +36,7 @@ import java.util.regex.Pattern; import java.util.stream.Collectors; /** - * Parse a properties file, performing non-recursive Ant-like + * Parse a properties file, performing recursive Ant-like * property value interpolation, and return the resulting Properties. */ public class InterpolatedProperties extends Properties { @@ -44,7 +44,7 @@ public class InterpolatedProperties extends Properties { /** * Loads the properties file via {@link Properties#load(InputStream)}, - * then performs non-recursive Ant-like property value interpolation. + * then performs recursive Ant-like property value interpolation. */ @Override public void load(InputStream inStream) throws IOException { @@ -53,7 +53,7 @@ public class InterpolatedProperties extends Properties { /** * Loads the properties file via {@link Properties#load(Reader)}, - * then performs non-recursive Ant-like property value interpolation. + * then performs recursive Ant-like property value interpolation. */ @Override public void load(Reader reader) throws IOException {