This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
commit d1e57e087e23f012b78628ac5894f57251cd06d9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 28 22:53:03 2020 -0400 Format. --- .../java/org/apache/commons/text/lookup/StringLookupFactory.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 41c8c40..59db15f 100644 --- a/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java +++ b/src/main/java/org/apache/commons/text/lookup/StringLookupFactory.java @@ -251,8 +251,7 @@ public final class StringLookupFactory { * {@code "USERNAME"} to the same effect. * </p> */ - static final FunctionStringLookup<String> INSTANCE_ENVIRONMENT_VARIABLES = FunctionStringLookup - .on(System::getenv); + static final FunctionStringLookup<String> INSTANCE_ENVIRONMENT_VARIABLES = FunctionStringLookup.on(System::getenv); /** * Defines the FunctionStringLookup singleton that always returns null. @@ -262,8 +261,7 @@ public final class StringLookupFactory { /** * Defines the FunctionStringLookup singleton for looking up system properties. */ - static final FunctionStringLookup<String> INSTANCE_SYSTEM_PROPERTIES = FunctionStringLookup - .on(System::getProperty); + static final FunctionStringLookup<String> INSTANCE_SYSTEM_PROPERTIES = FunctionStringLookup.on(System::getProperty); /** * Default lookup key for interpolation {@value #KEY_BASE64_DECODER}.