aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2022-10-13 14:17:47 -0400
committerGary Gregory <garydgregory@gmail.com>2022-10-13 14:17:47 -0400
commit2ffa1171944fd082bd6a424a9c231743f876d11b (patch)
tree8a62392cea48a79be422c0c47611b58feddc3b71 /src/test/java/org
parent10db68e492fdadb69f3c02fbb8f88660e22739ef (diff)
downloadapache-commons-lang-2ffa1171944fd082bd6a424a9c231743f876d11b.tar.gz
Format tweaks
Diffstat (limited to 'src/test/java/org')
-rwxr-xr-xsrc/test/java/org/apache/commons/lang3/function/Objects.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/java/org/apache/commons/lang3/function/Objects.java b/src/test/java/org/apache/commons/lang3/function/Objects.java
index 21e30cd8e..f07a0edbd 100755
--- a/src/test/java/org/apache/commons/lang3/function/Objects.java
+++ b/src/test/java/org/apache/commons/lang3/function/Objects.java
@@ -24,7 +24,6 @@ import javax.annotation.Nullable;
import org.apache.commons.lang3.ObjectUtils;
-
/**
* This class provides some replacements for the corresponding methods in
* {@link java.util.Objects}. The replacements have the advantage, that they are properly
@@ -62,6 +61,7 @@ import org.apache.commons.lang3.ObjectUtils;
* @since 3.12.0
*/
public class Objects {
+
/**
* Checks, whether the given object is non-null. If so, returns the non-null
* object as a result value. Otherwise, a NullPointerException is thrown.
@@ -75,7 +75,8 @@ public class Objects {
return requireNonNull(value, "The value must not be null.");
}
- /** Checks, whether the given object is non-null. If so, returns the non-null
+ /**
+ * Checks, whether the given object is non-null. If so, returns the non-null
* object as a result value. Otherwise, invokes the given {@link Supplier},
* and returns the suppliers result value.
* @param <T> The type of parameter {@code value}, also the result type of