From 7337507a796ed6717feb87f4e9829467872c1741 Mon Sep 17 00:00:00 2001 From: pascalschumacher Date: Mon, 6 Mar 2017 19:23:00 +0100 Subject: [PATCH] LANG-1314: Fix javadoc creation on with Java 8 Remove

tag from Computable's javadoc The standard javadoc doclet does not allow self closing tags (such as

). This patch removes such a tag from Computable's javadoc, as it's redundant anyway, as it's only used to create spaces between two existing paragraphs. --- .../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 d9e5468d4..6cb37aaf9 100644 --- a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java +++ b/src/main/java/org/apache/commons/lang3/concurrent/Computable.java @@ -18,7 +18,7 @@ package org.apache.commons.lang3.concurrent; /** *

Definition of an interface for a wrapper around a calculation that takes a single parameter and returns a result.

- *

+ * *

This interface allows for wrapping a calculation into a class so that it maybe passed around an application.

* * @param the type of the input to the calculation