summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.http.server
diff options
context:
space:
mode:
authorRobin Rosenberg <robin.rosenberg@dewire.com>2014-03-29 10:29:29 +0100
committerRobin Stocker <robin@nibor.org>2014-03-29 18:34:41 +0100
commit32ff57a2b2b9480f4d374a2592fada7f720b124f (patch)
tree973cff1473ce9849549591137f4540b403a2e37f /org.eclipse.jgit.http.server
parent20fc105021d77b43e52072fc8c2dd4810c68713a (diff)
downloadjgit-32ff57a2b2b9480f4d374a2592fada7f720b124f.tar.gz
jgit-32ff57a2b2b9480f4d374a2592fada7f720b124f.zip
Cleanup javadocs so they pass the java8 doclint checks
Bug: 431552 Change-Id: I469316f5645205016e1fa6b0fbd2ff3b509b14bc Signed-off-by: Robin Stocker <robin@nibor.org>
Diffstat (limited to 'org.eclipse.jgit.http.server')
-rw-r--r--org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java b/org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java
index b64e349ed8..c0d4b5e4db 100644
--- a/org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java
+++ b/org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java
@@ -131,7 +131,7 @@ public class ClientVersionUtil {
* first parsed version string.
* @param b
* second parsed version string.
- * @return <0 if a is before b; 0 if a equals b; >0 if a is after b.
+ * @return &lt; 0 if a is before b; 0 if a equals b; &gt;0 if a is after b.
*/
public static int compare(int[] a, int[] b) {
for (int i = 0; i < a.length && i < b.length; i++) {