You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/06/29 03:44:00 UTC

[commons-text] 01/02: Format.

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 <ga...@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}.