Browse Source

Add missing @since tag on FileTreeIterator#getLastModifiedInstant

Change-Id: I809399e6a71e0079d2f0007b0d3f00b531d451bb
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-5.1
Matthias Sohn 5 years ago
parent
commit
e80a62e226
  1. 3
      org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java

3
org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java

@ -412,6 +412,9 @@ public class FileTreeIterator extends WorkingTreeIterator {
return attributes.getLastModifiedInstant().toEpochMilli(); return attributes.getLastModifiedInstant().toEpochMilli();
} }
/**
* @since 5.1.9
*/
@Override @Override
public Instant getLastModifiedInstant() { public Instant getLastModifiedInstant() {
return attributes.getLastModifiedInstant(); return attributes.getLastModifiedInstant();

Loading…
Cancel
Save