Browse Source

ObjectChecker#getGitsubmodules: Fix malformed javadoc

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>
stable-4.7
David Pursehouse 6 years ago
parent
commit
df8bd762a1
  1. 4
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java

4
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectChecker.java

@ -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
*/

Loading…
Cancel
Save