Browse Source

Add missing @since tag for new API method getUpdateIndex

Change-Id: Idd4a580e241a9105a55bc6f0457ad02a35e55faf
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-5.4
Matthias Sohn 6 years ago committed by David Pursehouse
parent
commit
3ae22bdf66
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdRef.java
  2. 5
      org.eclipse.jgit/src/org/eclipse/jgit/lib/SymbolicRef.java

5
org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectIdRef.java

@ -278,7 +278,10 @@ public abstract class ObjectIdRef implements Ref {
return storage;
}
/** {@inheritDoc} */
/**
* {@inheritDoc}
* @since 5.3
*/
@Override
public long getUpdateIndex() {
if (updateIndex == -1) {

5
org.eclipse.jgit/src/org/eclipse/jgit/lib/SymbolicRef.java

@ -149,7 +149,10 @@ public class SymbolicRef implements Ref {
return getLeaf().isPeeled();
}
/** {@inheritDoc} */
/**
* {@inheritDoc}
* @since 5.3
*/
@Override
public long getUpdateIndex() {
if (updateIndex == -1) {

Loading…
Cancel
Save