Author: ggregory
Date: Fri Oct  5 16:56:30 2018
New Revision: 1842942

URL: http://svn.apache.org/viewvc?rev=1842942&view=rev
Log:
[CONFIGURATION-726] Add support for Commons Text 1.5 new string lookups as 
default lookups. Looking ahead to Commons Text 1.6.

Modified:
    
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java

Modified: 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
URL: 
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java?rev=1842942&r1=1842941&r2=1842942&view=diff
==============================================================================
--- 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
 (original)
+++ 
commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
 Fri Oct  5 16:56:30 2018
@@ -35,7 +35,8 @@ import org.apache.commons.text.lookup.St
  * 
  * Provides access to lookups defined in Apache Commons Text:
  * <ul>
- * <li>"base64" for the {@code Base64StringLookup} since Apache Commons Text 
1.5.</li>
+ * <li>"base64Decoder" for the {@code Base64DecoderStringLookup} since Apache 
Commons Text 1.6.</li>
+ * <li>"base64Encoder" for the {@code Base64EncoderStringLookup} since Apache 
Commons Text 1.6.</li>
  * <li>"const" for the {@code ConstantStringLookup} since Apache Commons Text 
1.5.</li>
  * <li>"date" for the {@code DateStringLookup}.</li>
  * <li>"env" for the {@code EnvironmentVariableStringLookup}.</li>
@@ -48,8 +49,8 @@ import org.apache.commons.text.lookup.St
  * <li>"script" for the {@code ScriptStringLookup} since Apache Commons Text 
1.5.</li>
  * <li>"sys" for the {@code SystemPropertyStringLookup}.</li>
  * <li>"url" for the {@code UrlStringLookup} since Apache Commons Text 
1.5.</li>
-// * <li>"urlDecode" for the {@code UrlDecoderStringLookup} since Apache 
Commons Text 1.6.</li>
-// * <li>"urlEncode" for the {@code UrlEncoderStringLookup} since Apache 
Commons Text 1.6.</li>
+ * <li>"urlDecoder" for the {@code UrlDecoderStringLookup} since Apache 
Commons Text 1.6.</li>
+ * <li>"urlEncoder" for the {@code UrlEncoderStringLookup} since Apache 
Commons Text 1.6.</li>
  * <li>"xml" for the {@code XmlStringLookup} since Apache Commons Text 
1.5.</li>
  * </ul>
  * 


Reply via email to