]> source.dussan.org Git - jgit.git/commitdiff
ObjectChecker#getGitsubmodules: Fix malformed javadoc 30/130530/2
authorDavid Pursehouse <david.pursehouse@gmail.com>
Sat, 6 Oct 2018 08:51:28 +0000 (17:51 +0900)
committerDavid Pursehouse <david.pursehouse@gmail.com>
Sun, 7 Oct 2018 00:20:31 +0000 (09:20 +0900)
The text "<tree, blob>" 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 <david.pursehouse@gmail.com>
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java

index 6ae752c1f5e3ac33793c6ec40bf1cd2c09d6dc2a..d8ddcd5e4819069c5732529066528abf76b5ee7a 100644 (file)
@@ -1209,11 +1209,11 @@ public class ObjectChecker {
        }
 
        /**
-        * 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 <tree, blob>
+        * @return List of pairs of ids {@literal <tree, blob>}.
         *
         * @since 4.7.5
         */