Repository: commons-text Updated Branches: refs/heads/master 76b07d101 -> e88e0c919
[TEXT-140] Add a Base64 string lookup. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/e88e0c91 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/e88e0c91 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/e88e0c91 Branch: refs/heads/master Commit: e88e0c919a8c5a09f279e6a1aad5cb095dd3c074 Parents: 76b07d1 Author: Gary Gregory <[email protected]> Authored: Wed Sep 12 18:36:45 2018 -0600 Committer: Gary Gregory <[email protected]> Committed: Wed Sep 12 18:36:45 2018 -0600 ---------------------------------------------------------------------- .../java/org/apache/commons/text/lookup/StringLookupFactory.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/e88e0c91/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java index b779cd1..dbcd44c 100644 --- a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java +++ b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java @@ -69,6 +69,7 @@ public final class StringLookupFactory { stringLookupMap.put("script", ScriptStringLookup.INSTANCE); stringLookupMap.put("file", FileStringLookup.INSTANCE); stringLookupMap.put("url", UrlStringLookup.INSTANCE); + stringLookupMap.put("base64", Base64StringLookup.INSTANCE); } }
