]> source.dussan.org Git - jgit.git/commitdiff
Cleanup javadocs so they pass the java8 doclint checks 43/24143/4
authorRobin Rosenberg <robin.rosenberg@dewire.com>
Sat, 29 Mar 2014 09:29:29 +0000 (10:29 +0100)
committerRobin Stocker <robin@nibor.org>
Sat, 29 Mar 2014 17:34:41 +0000 (18:34 +0100)
Bug: 431552
Change-Id: I469316f5645205016e1fa6b0fbd2ff3b509b14bc
Signed-off-by: Robin Stocker <robin@nibor.org>
35 files changed:
org.eclipse.jgit.http.server/src/org/eclipse/jgit/http/server/ClientVersionUtil.java
org.eclipse.jgit.ui/src/org/eclipse/jgit/awtui/CommitGraphPane.java
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/api/MergeResult.java
org.eclipse.jgit/src/org/eclipse/jgit/api/PullCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/diff/DiffEntry.java
org.eclipse.jgit/src/org/eclipse/jgit/diff/Edit.java
org.eclipse.jgit/src/org/eclipse/jgit/diff/MyersDiff.java
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCache.java
org.eclipse.jgit/src/org/eclipse/jgit/dircache/DirCacheEntry.java
org.eclipse.jgit/src/org/eclipse/jgit/fnmatch/FileNameMatcher.java
org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/pack/PackWriter.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/AbbreviatedObjectId.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/CoreConfig.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/Tree.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/TreeFormatter.java
org.eclipse.jgit/src/org/eclipse/jgit/merge/MergeFormatter.java
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/FooterLine.java
org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommitList.java
org.eclipse.jgit/src/org/eclipse/jgit/storage/pack/PackConfig.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/URIish.java
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/CanonicalTreeParser.java
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/TreeWalk.java
org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java
org.eclipse.jgit/src/org/eclipse/jgit/util/IO.java
org.eclipse.jgit/src/org/eclipse/jgit/util/IntList.java
org.eclipse.jgit/src/org/eclipse/jgit/util/LongList.java
org.eclipse.jgit/src/org/eclipse/jgit/util/NB.java
org.eclipse.jgit/src/org/eclipse/jgit/util/RawParseUtils.java
org.eclipse.jgit/src/org/eclipse/jgit/util/io/InterruptTimer.java
org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutInputStream.java
org.eclipse.jgit/src/org/eclipse/jgit/util/io/TimeoutOutputStream.java

index b64e349ed85f308adac1a2ee8279a9b094aa278f..c0d4b5e4dbc1d3088ff3edbd0e7b504285f3b1db 100644 (file)
@@ -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++) {
index 0752dceec4bca248da1a4b9a229b73e659409b11..4d32235e6dc557ffaf9a387bdb465f5b2a5f9185 100644 (file)
@@ -74,7 +74,7 @@ import org.eclipse.jgit.revplot.PlotCommitList;
  * <li>Commit graph and short message</li>
  * <li>Author name and email address</li>
  * <li>Author date and time</li>
- * </ul>
+ * </ol>
  */
 public class CommitGraphPane extends JTable {
        private static final long serialVersionUID = 1L;
index 6feb1862ed5366f90af4802c617398403ee2d69e..2ca8422fe43cc493f7b0ba8b8f714d8b3bdd246e 100644 (file)
@@ -142,7 +142,7 @@ public class DescribeCommand extends GitCommand<String> {
         * @return if there's a tag that points to the commit being described, this
         *         tag name is returned. Otherwise additional suffix is added to the
         *         nearest tag, just like git-describe(1).
-        *         <p/>
+        *         <p>
         *         If none of the ancestors of the commit being described has any
         *         tags at all, then this method returns null, indicating that
         *         there's no way to describe this tag.
index d8e73e39113c4d7c19d554178103e5e97ee5c8c3..6f0313dfda9ea0bc2b5b23d3e4037a2b8673a670 100644 (file)
@@ -107,7 +107,7 @@ public class MergeCommand extends GitCommand<MergeResult> {
        /**
         * The modes available for fast forward merges corresponding to the
         * <code>--ff</code>, <code>--no-ff</code> and <code>--ff-only</code>
-        * options under <code>branch.<name>.mergeoptions</code>.
+        * options under <code>branch.&lt;name&gt;.mergeoptions</code>.
         */
        public enum FastForwardMode implements ConfigEnum {
                /**
@@ -162,7 +162,7 @@ public class MergeCommand extends GitCommand<MergeResult> {
                         *
                         * @param ffMode
                         *            the <code>FastForwardMode</code> value to be mapped
-                        * @return the mapped code>FastForwardMode.Merge</code> value
+                        * @return the mapped <code>FastForwardMode.Merge</code> value
                         */
                        public static Merge valueOf(FastForwardMode ffMode) {
                                switch (ffMode) {
@@ -182,7 +182,7 @@ public class MergeCommand extends GitCommand<MergeResult> {
                 *
                 * @param ffMode
                 *            the <code>FastForwardMode.Merge</code> value to be mapped
-                * @return the mapped code>FastForwardMode</code> value
+                * @return the mapped <code>FastForwardMode</code> value
                 */
                public static FastForwardMode valueOf(FastForwardMode.Merge ffMode) {
                        switch (ffMode) {
index 30edf961f1ff07823e997eb3fa985259c80a6b86..2def12f1a2f811a06370fda400c539019ce90cea 100644 (file)
@@ -464,32 +464,36 @@ public class MergeResult {
         * file to a two-dimensional int-array of line-numbers telling where in the
         * file conflict markers for which merged commit can be found.
         * <p>
-        * If the returned value contains a mapping "path"->[x][y]=z then this means
+        * If the returned value contains a mapping "path"-&gt;[x][y]=z then this
+        * means
         * <ul>
         * <li>the file with path "path" contains conflicts</li>
-        * <li>if y < "number of merged commits": for conflict number x in this file
-        * the chunk which was copied from commit number y starts on line number z.
-        * All numberings and line numbers start with 0.</li>
+        * <li>if y &lt; "number of merged commits": for conflict number x in this
+        * file the chunk which was copied from commit number y starts on line
+        * number z. All numberings and line numbers start with 0.</li>
         * <li>if y == "number of merged commits": the first non-conflicting line
         * after conflict number x starts at line number z</li>
         * </ul>
         * <p>
         * Example code how to parse this data:
-        * <pre> MergeResult m=...;
-        * Map<String, int[][]> allConflicts = m.getConflicts();
+        *
+        * <pre>
+        * MergeResult m=...;
+        * Map&lt;String, int[][]&gt; allConflicts = m.getConflicts();
         * for (String path : allConflicts.keySet()) {
         *      int[][] c = allConflicts.get(path);
         *      System.out.println("Conflicts in file " + path);
         *      for (int i = 0; i < c.length; ++i) {
         *              System.out.println("  Conflict #" + i);
-        *              for (int j = 0; j < (c[i].length) - 1; ++j) {
+        *              for (int j = 0; j &lt;   (c[i].length) - 1; ++j) {
         *                      if (c[i][j] >= 0)
         *                              System.out.println("    Chunk for "
         *                                              + m.getMergedCommits()[j] + " starts on line #"
         *                                              + c[i][j]);
         *              }
         *      }
-        * }</pre>
+        * }
+        * </pre>
         *
         * @return the conflicts or <code>null</code> if no conflict occurred
         */
index c157f14fcee1c3ce81cad4b789f1cc4671fcef80..d92adfe3702f621cadbb97be0db0321e36aa81c0 100644 (file)
@@ -111,16 +111,18 @@ public class PullCommand extends TransportCommand<PullCommand, PullResult> {
 
        /**
         * Set if rebase should be used after fetching. If set to true, rebase is
-        * used instead of merge. This is equivalent to --rebase on the command line.
-        * <p/>
-        * If set to false, merge is used after fetching, overriding the configuration
-        * file. This is equivalent to --no-rebase on the command line.
-        * <p/>
-        * This setting overrides the settings in the configuration file.
-        * By default, the setting in the repository configuration file is used.
-        * <p/>
-        * A branch can be configured to use rebase by default.
-        * See branch.[name].rebase and branch.autosetuprebase.
+        * used instead of merge. This is equivalent to --rebase on the command
+        * line.
+        * <p>
+        * If set to false, merge is used after fetching, overriding the
+        * configuration file. This is equivalent to --no-rebase on the command
+        * line.
+        * <p>
+        * This setting overrides the settings in the configuration file. By
+        * default, the setting in the repository configuration file is used.
+        * <p>
+        * A branch can be configured to use rebase by default. See
+        * branch.[name].rebase and branch.autosetuprebase.
         *
         * @param useRebase
         * @return {@code this}
index 06b2aec06bf7ea1061a508fac84f54397f21cffc..24409ee5921b55b9496c50b301185cbe847268f3 100644 (file)
@@ -372,7 +372,7 @@ public class DiffEntry {
         * <li><i>file modify</i>: always {@link #getOldPath()}</li>
         * <li><i>file delete</i>: always <code>/dev/null</code></li>
         * <li><i>file copy</i>: destination file the copy ends up at</li>
-        * <li><i>file rename</i>: destination file the rename ends up at/li>
+        * <li><i>file rename</i>: destination file the rename ends up at</li>
         * </ul>
         *
         * @return new name for this file.
@@ -453,7 +453,7 @@ public class DiffEntry {
         * <pre>
         * TreeFilter filterA = ...;
         * TreeFilter filterB = ...;
-        * List<DiffEntry> entries = DiffEntry.scan(walk, false, filterA, filterB);
+        * List&lt;DiffEntry&gt; entries = DiffEntry.scan(walk, false, filterA, filterB);
         * DiffEntry entry = entries.get(0);
         * boolean filterAMatched = entry.isMarked(0);
         * boolean filterBMatched = entry.isMarked(1);
index 684c06699b727f21ac188b0a61ea4e913f1754e7..57a2018abf1725afe5cd4769082bdeda44c22611 100644 (file)
@@ -51,16 +51,16 @@ package org.eclipse.jgit.diff;
  * Regions should be specified using 0 based notation, so add 1 to the start and
  * end marks for line numbers in a file.
  * <p>
- * An edit where <code>beginA == endA && beginB < endB</code> is an insert edit,
- * that is sequence B inserted the elements in region
+ * An edit where <code>beginA == endA && beginB &lt; endB</code> is an insert
+ * edit, that is sequence B inserted the elements in region
  * <code>[beginB, endB)</code> at <code>beginA</code>.
  * <p>
- * An edit where <code>beginA < endA && beginB == endB</code> is a delete edit,
- * that is sequence B has removed the elements between
+ * An edit where <code>beginA &lt; endA && beginB == endB</code> is a delete
+ * edit, that is sequence B has removed the elements between
  * <code>[beginA, endA)</code>.
  * <p>
- * An edit where <code>beginA < endA && beginB < endB</code> is a replace edit,
- * that is sequence B has replaced the range of elements between
+ * An edit where <code>beginA &lt; endA && beginB &lt; endB</code> is a replace
+ * edit, that is sequence B has replaced the range of elements between
  * <code>[beginA, endA)</code> with those found in <code>[beginB, endB)</code>.
  */
 public class Edit {
@@ -105,11 +105,11 @@ public class Edit {
         * @param as
         *            beginA: start of region in sequence A; 0 based.
         * @param ae
-        *            endA: end of region in sequence A; must be >= as.
+        *            endA: end of region in sequence A; must be &gt;= as.
         * @param bs
         *            beginB: start of region in sequence B; 0 based.
         * @param be
-        *            endB: end of region in sequence B; must be >= bs.
+        *            endB: end of region in sequence B; must be &gt; = bs.
         */
        public Edit(final int as, final int ae, final int bs, final int be) {
                beginA = as;
index 86af86d2cbedc48fd51791c700b8e42e825b7833..a415ad3ab04448d7ecb587574fe0fc5864238520 100644 (file)
@@ -167,11 +167,21 @@ public class MyersDiff<S extends Sequence> {
        }
 
        /**
-        * Calculates the differences between a given part of A against another given part of B
-        * @param beginA start of the part of A which should be compared (0<=beginA<sizeof(A))
-        * @param endA end of the part of A which should be compared (beginA<=endA<sizeof(A))
-        * @param beginB start of the part of B which should be compared (0<=beginB<sizeof(B))
-        * @param endB end of the part of B which should be compared (beginB<=endB<sizeof(B))
+        * Calculates the differences between a given part of A against another
+        * given part of B
+        *
+        * @param beginA
+        *            start of the part of A which should be compared
+        *            (0&lt;=beginA&lt;sizeof(A))
+        * @param endA
+        *            end of the part of A which should be compared
+        *            (beginA&lt;=endA&lt;sizeof(A))
+        * @param beginB
+        *            start of the part of B which should be compared
+        *            (0&lt;=beginB&lt;sizeof(B))
+        * @param endB
+        *            end of the part of B which should be compared
+        *            (beginB&lt;=endB&lt;sizeof(B))
         */
        protected void calculateEdits(int beginA, int endA,
                        int beginB, int endB) {
index 68e088b2e3e8417e7c2ba38dd0412909afd9c5c8..645de2704e3e1f04791e007d471c896cc52efdd0 100644 (file)
@@ -730,14 +730,14 @@ public class DirCache {
        }
 
        /**
-        * Locate the position a path's entry is at in the index.
-        * For details refer to #findEntry(byte[], int).
+        * Locate the position a path's entry is at in the index. For details refer
+        * to #findEntry(byte[], int).
         *
         * @param path
         *            the path to search for.
-        * @return if >= 0 then the return value is the position of the entry in the
-        *         index; pass to {@link #getEntry(int)} to obtain the entry
-        *         information. If < 0 the entry does not exist in the index.
+        * @return if &gt;= 0 then the return value is the position of the entry in
+        *         the index; pass to {@link #getEntry(int)} to obtain the entry
+        *         information. If &lt; 0 the entry does not exist in the index.
         */
        public int findEntry(final String path) {
                final byte[] p = Constants.encode(path);
@@ -758,9 +758,9 @@ public class DirCache {
         *            the byte array starting with the path to search for.
         * @param pLen
         *            the length of the path in bytes
-        * @return if >= 0 then the return value is the position of the entry in the
-        *         index; pass to {@link #getEntry(int)} to obtain the entry
-        *         information. If < 0 the entry does not exist in the index.
+        * @return if &gt;= 0 then the return value is the position of the entry in
+        *         the index; pass to {@link #getEntry(int)} to obtain the entry
+        *         information. If &lt; 0 the entry does not exist in the index.
         * @since 3.4
         */
        public int findEntry(final byte[] p, final int pLen) {
@@ -917,7 +917,7 @@ public class DirCache {
         *            returned tree identity.
         * @return identity for the root tree.
         * @throws UnmergedPathException
-        *             one or more paths contain higher-order stages (stage > 0),
+        *             one or more paths contain higher-order stages (stage &gt; 0),
         *             which cannot be stored in a tree object.
         * @throws IllegalStateException
         *             one or more paths contain an invalid mode which should never
index 650accc295fd66884e05d2d40a8b1c992bd64378..65188c8f43827e5388ee05f98b29a198d67a478b 100644 (file)
@@ -548,7 +548,7 @@ public class DirCacheEntry {
         * <p>
         * Note that this is the length of the file in the working directory, which
         * may differ from the size of the decompressed blob if work tree filters
-        * are being used, such as LF<->CRLF conversion.
+        * are being used, such as LF&lt;-&gt;CRLF conversion.
         * <p>
         * Note also that for very large files, this is the size of the on-disk file
         * truncated to 32 bits, i.e. modulo 4294967296. If that value is larger
index 02e4235fd037530c2b9ac04ed2ced249a25fc787..92a4837b2e93f706c2595590feb4daac1ad1f2f3 100644 (file)
@@ -80,7 +80,6 @@ import org.eclipse.jgit.errors.NoClosingBracketException;
  * </ul>
  * e. g. [[:xdigit:]]</li>
  * </ul>
- * </p>
  * Any character can be escaped by prepending it with a \
  */
 public class FileNameMatcher {
index a7122592f3c8315e79af1d95455de8ff70b0a023..f3791e66faebf822486430c0dc2d5cd39e6028e9 100644 (file)
@@ -132,11 +132,13 @@ import org.eclipse.jgit.util.TemporaryBuffer;
  * <li>by providing iterator of {@link RevObject} specifying exact list and
  * order of objects in pack</li>
  * </ul>
+ * <p>
  * Typical usage consists of creating instance intended for some pack,
  * configuring options, preparing the list of objects by calling
  * {@link #preparePack(Iterator)} or
  * {@link #preparePack(ProgressMonitor, Collection, Collection)}, and finally
- * producing the stream with {@link #writePack(ProgressMonitor, ProgressMonitor, OutputStream)}.
+ * producing the stream with
+ * {@link #writePack(ProgressMonitor, ProgressMonitor, OutputStream)}.
  * </p>
  * <p>
  * Class provide set of configurable options and {@link ProgressMonitor}
index 87dabd49029a7e0c6157d37a06b68fce3c341ca2..29a379e4a6a0229755d3c5fb993db7a97fd8d6c7 100644 (file)
@@ -325,7 +325,7 @@ public final class AbbreviatedObjectId implements Serializable {
                return NB.compareUInt32(w5, mask(5, bs[p + 4]));
        }
 
-       /** @return value for a fan-out style map, only valid of length >= 2. */
+       /** @return value for a fan-out style map, only valid of length &gt;= 2. */
        public final int getFirstByte() {
                return w1 >>> 24;
        }
index 9db4a61c69aaf5b500a2c166aac5604135f5485c..11081d59eed8734e4197bcf0bb87f147ae064f3a 100644 (file)
@@ -156,8 +156,8 @@ public abstract class AnyObjectId implements Comparable<AnyObjectId> {
         *
         * @param other
         *            the other id to compare to. Must not be null.
-        * @return < 0 if this id comes before other; 0 if this id is equal to
-        *         other; > 0 if this id comes after other.
+        * @return &lt; 0 if this id comes before other; 0 if this id is equal to
+        *         other; &gt; 0 if this id comes after other.
         */
        public final int compareTo(final AnyObjectId other) {
                if (this == other)
index 18adb9aa1316aede2fa0dbe58761f6a609e0638f..962f2e7c240f60a1a657ab96964ef1fcad12df9e 100644 (file)
@@ -64,13 +64,13 @@ public class CoreConfig {
 
        /** Permissible values for {@code core.autocrlf}. */
        public static enum AutoCRLF {
-               /** Automatic CRLF->LF conversion is disabled. */
+               /** Automatic CRLF-&gt;LF conversion is disabled. */
                FALSE,
 
-               /** Automatic CRLF->LF conversion is enabled. */
+               /** Automatic CRLF-&gt;LF conversion is enabled. */
                TRUE,
 
-               /** CRLF->LF performed, but no LF->CRLF. */
+               /** CRLF-&gt;LF performed, but no LF-&gt;CRLF. */
                INPUT;
        }
 
index f14488b73ea3d86d436761d286a3554c3088d584..c6e10299ef653f4a81915e1c0e5dd7505a37d39b 100644 (file)
@@ -66,7 +66,7 @@ public class RefComparator implements Comparator<Ref> {
 
        /**
         * Sorts the collection of refs, returning a new collection.
-        * 
+        *
         * @param refs
         *            collection to be sorted
         * @return sorted collection of refs
@@ -79,12 +79,12 @@ public class RefComparator implements Comparator<Ref> {
 
        /**
         * Compare a reference to a name.
-        * 
+        *
         * @param o1
         *            the reference instance.
         * @param o2
         *            the name to compare to.
-        * @return standard Comparator result of < 0, 0, > 0.
+        * @return standard Comparator result of &lt; 0, 0, &gt; 0.
         */
        public static int compareTo(Ref o1, String o2) {
                return o1.getName().compareTo(o2);
@@ -92,12 +92,12 @@ public class RefComparator implements Comparator<Ref> {
 
        /**
         * Compare two references by name.
-        * 
+        *
         * @param o1
         *            the reference instance.
         * @param o2
         *            the other reference instance.
-        * @return standard Comparator result of < 0, 0, > 0.
+        * @return standard Comparator result of &lt; 0, 0, &gt; 0.
         */
        public static int compareTo(final Ref o1, final Ref o2) {
                return o1.getName().compareTo(o2.getName());
index d257ba93e82ab8e566be2b8747c9c2497d58fc62..43bd489dc04ed1d0266fe9ed4f4ad5b9baf53137 100644 (file)
@@ -81,7 +81,7 @@ public class Tree extends TreeEntry {
         * @param lasta '/' if a is a tree, else NUL
         * @param lastb '/' if b is a tree, else NUL
         *
-        * @return < 0 if a is sorted before b, 0 if they are the same, else b
+        * @return &lt; 0 if a is sorted before b, 0 if they are the same, else b
         */
        public static final int compareNames(final byte[] a, final byte[] b, final int lasta,final int lastb) {
                return compareNames(a, b, 0, b.length, lasta, lastb);
index db0694b969a40f0f3454b1af70900bf3e21bf0cb..065b8f46b695ebe471a9bbf03fb90ef6db6d0022 100644 (file)
@@ -111,7 +111,7 @@ public class TreeFormatter {
        }
 
        /**
-        * Add a link to a submodule commit, mode is {@link #GITLINK}.
+        * Add a link to a submodule commit, mode is {@link FileMode#GITLINK}.
         *
         * @param name
         *            name of the entry.
@@ -123,7 +123,7 @@ public class TreeFormatter {
        }
 
        /**
-        * Add a subtree, mode is {@link #TREE}.
+        * Add a subtree, mode is {@link FileMode#TREE}.
         *
         * @param name
         *            name of the entry.
@@ -135,7 +135,7 @@ public class TreeFormatter {
        }
 
        /**
-        * Add a regular file, mode is {@link #REGULAR_FILE}.
+        * Add a regular file, mode is {@link FileMode#REGULAR_FILE}.
         *
         * @param name
         *            name of the entry.
index 1ba80869c204818fc3fba92504df8e5c3ee1ddd3..eed1dcfa8887a4092304a397108249936a4b7393 100644 (file)
@@ -68,7 +68,7 @@ public class MergeFormatter {
         *            the merge result which should be presented
         * @param seqName
         *            When a conflict is reported each conflicting range will get a
-        *            name. This name is following the "<<<<<<< " or ">>>>>>> "
+        *            name. This name is following the "&lt;&lt;&lt;&lt;&lt;&lt;&lt; " or "&gt;&gt;&gt;&gt;&gt;&gt;&gt; "
         *            conflict markers. The names for the sequences are given in
         *            this list
         * @param charsetName
index f233923d7dbace06b47b921ccf897b0510102fe8..b061d6ae13b86849fdb87d2d332fa157aa303535 100644 (file)
@@ -124,7 +124,7 @@ public final class FooterLine {
         * Extract the email address (if present) from the footer.
         * <p>
         * If there is an email address looking string inside of angle brackets
-        * (e.g. "<a@b>"), the return value is the part extracted from inside the
+        * (e.g. "&lt;a@b&gt;"), the return value is the part extracted from inside the
         * brackets. If no brackets are found, then {@link #getValue()} is returned
         * if the value contains an '@' sign. Otherwise, null.
         *
index 3498059f63a902326761abf09ec8d211ba4c1411..835e0ce224b2c581c656baa5baa850c28af5b94d 100644 (file)
@@ -344,7 +344,8 @@ public class RevCommitList<E extends RevCommit> extends RevObjectList<E> {
         * walker specified by {@link #source(RevWalk)} is pumped until the
         * specified commit is loaded. Callers can test the final size of the list
         * by {@link #size()} to determine if the high water mark specified was met.
-        * <p/>
+        * <p>
+        *
         * @param commitToLoad
         *            commit the caller wants this list to contain when the fill
         *            operation is complete.
index e3219535c2ee8255caef293ccbb2b41b6e9e0885..a8835b76c9f870df5812c71aeae87c6d04935782 100644 (file)
@@ -599,7 +599,7 @@ public class PackConfig {
         * Default setting: 0 (auto-detect processors)
         *
         * @param threads
-        *            number of threads to use. If <= 0 the number of available
+        *            number of threads to use. If &lt;= 0 the number of available
         *            processors for this JVM is used.
         */
        public void setThreads(int threads) {
index bd6518279694c0d24dacc692cdcf96d5aa0fd2bc..aae898db811227ac372b82fef52bf932a8ddf817 100644 (file)
@@ -65,8 +65,8 @@ import org.eclipse.jgit.util.StringUtils;
 /**
  * This URI like construct used for referencing Git archives over the net, as
  * well as locally stored archives. It is similar to RFC 2396 URI's, but also
- * support SCP and the malformed file://<path> syntax (as opposed to the correct
- * file:<path> syntax.
+ * support SCP and the malformed file://&lt;path&gt; syntax (as opposed to the correct
+ * file:&lt;path&gt; syntax.
  */
 public class URIish implements Serializable {
        /**
@@ -660,7 +660,7 @@ public class URIish implements Serializable {
        /**
         * Get the "humanish" part of the path. Some examples of a 'humanish' part
         * for a full path:
-        * <table>
+        * <table summary="path vs humanish path" border="1">
         * <tr>
         * <th>Path</th>
         * <th>Humanish part</th>
index 57bbd64ba59b3a25328a8e2d3b9cc496cbd30380..523dfb04e4a90085edd826a24be0d75209189a75 100644 (file)
@@ -110,7 +110,7 @@ public class CanonicalTreeParser extends AbstractTreeIterator {
 
        /**
         * @return the parent of this tree parser
-        * @internal
+        * @deprecated internal use only
         */
        public CanonicalTreeParser getParent() {
                return (CanonicalTreeParser) parent;
index 90850eafdae30fc065885852e40e280169cd2b47..94281fba18f2e7212ffe9ef4f8d38a00eb74d6b8 100644 (file)
@@ -777,7 +777,7 @@ public class TreeWalk {
         *            end with '/' prior to invocation.
         * @param pLen
         *            number of bytes from <code>buf</code> to test.
-        * @return < 0 if p is before the current path; 0 if p matches the current
+        * @return &lt; 0 if p is before the current path; 0 if p matches the current
         *         path; 1 if the current path is past p and p will never match
         *         again on this tree walk.
         */
index 834cc85f49c3ff0d59a8403b6db61d7e8d9d3fe2..b77807c7019d9deea7380125a486923f8e619db3 100644 (file)
@@ -193,7 +193,7 @@ public class FileUtils {
         * the method fails. Furthermore if the destination exists and is a file
         * then the file will be deleted and then the rename is retried.
         * <p>
-        * This operation is <em>not</me> atomic.
+        * This operation is <em>not</em> atomic.
         *
         * @see FS#retryFailedLockFileCommit()
         * @param src
index 0975cd3b41d0a861aa8bf938bdb780f6329a7602..c817c475aa73dbcac4fa28a5be35d52017ed58ee 100644 (file)
@@ -317,7 +317,7 @@ public class IO {
         * @param fd
         *            the stream to skip bytes from.
         * @param toSkip
-        *            total number of bytes to be discarded. Must be >= 0.
+        *            total number of bytes to be discarded. Must be &gt;= 0.
         * @throws EOFException
         *             the stream ended before the requested number of bytes were
         *             skipped.
index 3161b51ae08292abb04420ac881119154ace2fc0..f7688e360973ff42177c93443eb5358421ce6c14 100644 (file)
@@ -44,7 +44,7 @@
 
 package org.eclipse.jgit.util;
 
-/** A more efficient List<Integer> using a primitive integer array. */
+/** A more efficient List&lt;Integer&gt; using a primitive integer array. */
 public class IntList {
        private int[] entries;
 
index d62203c4478d2ac1278f1bc7e7ee67b61322b4cc..dc4004fcef1121967098b053f0b3ac08295ece9f 100644 (file)
@@ -46,7 +46,7 @@ package org.eclipse.jgit.util;
 
 import java.util.Arrays;
 
-/** A more efficient List<Long> using a primitive long array. */
+/** A more efficient List&lt;Long&gt; using a primitive long array. */
 public class LongList {
        private long[] entries;
 
index e110c11427b5233658e29d2dd2f5fc760fe39323..85c1648a0added4c8bccf8cde2894c69e3f4c4d2 100644 (file)
@@ -56,7 +56,7 @@ public final class NB {
         *            the first value to compare.
         * @param b
         *            the second value to compare.
-        * @return < 0 if a < b; 0 if a == b; > 0 if a > b.
+        * @return &lt; 0 if a &lt; b; 0 if a == b; &gt; 0 if a &gt; b.
         */
        public static int compareUInt32(final int a, final int b) {
                final int cmp = (a >>> 1) - (b >>> 1);
index 2f9a6d12c7935e824144ce378b5c424e4db3ce32..3c2460cad7b4f28521bbc0177fd307020f9fffae 100644 (file)
@@ -982,7 +982,7 @@ public final class RawParseUtils {
         * Decode a region of the buffer under the ISO-8859-1 encoding.
         *
         * Each byte is treated as a single character in the 8859-1 character
-        * encoding, performing a raw binary->char conversion.
+        * encoding, performing a raw binary-&gt;char conversion.
         *
         * @param buffer
         *            buffer to pull raw bytes from.
index 0e58c4b60f0195723d71759504fe78ab1a6851a5..10243802642c3b4dc335ea7600e107b5c137cf5d 100644 (file)
@@ -113,7 +113,7 @@ public final class InterruptTimer {
         *
         * @param timeout
         *            number of milliseconds before the interrupt should trigger.
-        *            Must be > 0.
+        *            Must be &gt; 0.
         */
        public void begin(final int timeout) {
                if (timeout <= 0)
index fe452c255dc2c800108b84cabcc51a30661fef23..1148895cc6bf7162316ef27ce350b761988f90d1 100644 (file)
@@ -79,7 +79,7 @@ public class TimeoutInputStream extends FilterInputStream {
 
        /**
         * @param millis
-        *            number of milliseconds before aborting a read. Must be > 0.
+        *            number of milliseconds before aborting a read. Must be &gt; 0.
         */
        public void setTimeout(final int millis) {
                if (millis < 0)
index 7ca11ca05537fdfc3c0de02979087dc1a272c153..9236d0eb510da58d9a0f6d9bf7ca0e57ff8234a6 100644 (file)
@@ -80,7 +80,7 @@ public class TimeoutOutputStream extends OutputStream {
 
        /**
         * @param millis
-        *            number of milliseconds before aborting a write. Must be > 0.
+        *            number of milliseconds before aborting a write. Must be &gt; 0.
         */
        public void setTimeout(final int millis) {
                if (millis < 0)