diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-18 16:52:40 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2017-12-19 13:43:54 +0100 |
commit | 8a6af368c4129ef35520ec72cc9f55a3f685bfb8 (patch) | |
tree | 3c11f7c6517247c66fd87bf87571e150d064a84d /org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java | |
parent | d0342be42d65621e1136936cea9e5072bcfd17a4 (diff) | |
download | jgit-8a6af368c4129ef35520ec72cc9f55a3f685bfb8.tar.gz jgit-8a6af368c4129ef35520ec72cc9f55a3f685bfb8.zip |
Fix javadoc in org.eclipse.jgit lib package
Change-Id: I1e85a951488177993521ce177fdea212615e6164
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java index 95e338685a..43d2f3766c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RefComparator.java @@ -60,6 +60,7 @@ public class RefComparator implements Comparator<Ref> { /** Singleton instance of RefComparator */ public static final RefComparator INSTANCE = new RefComparator(); + /** {@inheritDoc} */ @Override public int compare(final Ref o1, final Ref o2) { return compareTo(o1, o2); |