| commit | e80a62e226f83cde5778ff455d9406c3cc247cf0 | [log] [tgz] |
|---|---|---|
| author | Matthias Sohn <matthias.sohn@sap.com> | Wed Aug 21 11:52:20 2019 +0200 |
| committer | Matthias Sohn <matthias.sohn@sap.com> | Wed Aug 21 11:52:20 2019 +0200 |
| tree | 539e09bdf5445011d2b99f97f9462415fa3cdf4f | |
| parent | edc67125b79a2bd185ffba1e73b1e8e7ef806c61 [diff] |
Add missing @since tag on FileTreeIterator#getLastModifiedInstant Change-Id: I809399e6a71e0079d2f0007b0d3f00b531d451bb Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java index d432c94..4f3eb05 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java
@@ -412,6 +412,9 @@ public long getLastModified() { return attributes.getLastModifiedInstant().toEpochMilli(); } + /** + * @since 5.1.9 + */ @Override public Instant getLastModifiedInstant() { return attributes.getLastModifiedInstant();