From df8bd762a17c2459576104d7f81d7ecca962799d Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Sat, 6 Oct 2018 17:51:28 +0900 Subject: [PATCH] ObjectChecker#getGitsubmodules: Fix malformed javadoc The text "" with angle brackets should not be used in javadoc since it is interpreted as an HTML tag and then rejected since it's not a valid HTML tag. Wrap the text in a @literal tag. Also add a missing space. Change-Id: Ide045e8c04a39a916f5b2e964e58c151e4555830 Signed-off-by: David Pursehouse --- org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java index 6ae752c1f..d8ddcd5e4 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java @@ -1209,11 +1209,11 @@ private String normalize(byte[] raw, int ptr, int end) { } /** - * Get the list of".gitmodules" files found in the pack. For each, report + * Get the list of ".gitmodules" files found in the pack. For each, report * its blob id (e.g. to validate its contents) and the tree where it was * found (e.g. to check if it is in the root) * - * @return List of pairs of ids + * @return List of pairs of ids {@literal }. * * @since 4.7.5 */