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-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 6953381 Fix Checkstyle issue.
6953381 is described below
commit 69533819a07a779676cf974f14bcc4fd361922ea
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Mar 25 08:47:03 2022 -0700
Fix Checkstyle issue.
---
src/main/java/org/apache/commons/lang3/concurrent/Computable.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
b/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
index bd13cd9..c60351b 100644
--- a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
+++ b/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
@@ -22,7 +22,7 @@ import org.apache.commons.lang3.function.FailableFunction;
* <p>Definition of an interface for a wrapper around a calculation that takes
a single parameter and returns a result.</p>
*
* <p>This interface allows for wrapping a calculation into a class so that it
maybe passed around an application.</p>
- *
+ *
* <p>See also {@code FailableFunction<I, O, InterruptedException>}.</p>
*
* @param <I> the type of the input to the calculation