LANG-1314: Fix javadoc creation on with Java 8

Remove </p> tag from Computable's javadoc

The standard javadoc doclet does not allow self closing tags (such as
</p>). 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.


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/7337507a
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/7337507a
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/7337507a

Branch: refs/heads/master
Commit: 7337507a796ed6717feb87f4e9829467872c1741
Parents: 0f5c769
Author: pascalschumacher <pascalschumac...@gmx.net>
Authored: Mon Mar 6 19:23:00 2017 +0100
Committer: pascalschumacher <pascalschumac...@gmx.net>
Committed: Mon Mar 6 19:27:36 2017 +0100

----------------------------------------------------------------------
 src/main/java/org/apache/commons/lang3/concurrent/Computable.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/7337507a/src/main/java/org/apache/commons/lang3/concurrent/Computable.java
----------------------------------------------------------------------
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 d9e5468..6cb37aa 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;
 
 /**
  * <p>Definition of an interface for a wrapper around a calculation that takes 
a single parameter and returns a result.</p>
- * <p/>
+ *
  * <p>This interface allows for wrapping a calculation into a class so that it 
maybe passed around an application.</p>
  *
  * @param <I> the type of the input to the calculation

Reply via email to