From 4bec6d98b86ef55e57b5c588e9cabceb40237032 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Fri, 12 Aug 2022 10:38:57 +0200 Subject: [PATCH] Add missing @since tag for RevCommit#parents introduced in 61b4d105e4 Change-Id: I3b5c22eea7d0af5464c7df7a7cd855ea08029853 --- org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommit.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommit.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommit.java index 7a74e314f..70490eec7 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommit.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/RevCommit.java @@ -106,6 +106,8 @@ public static RevCommit parse(RevWalk rw, byte[] raw) throws IOException { * Avoid accessing this field directly. Use method * {@link RevCommit#getParents()} instead. RevCommit does not allow parents * to be overridden and altering parent(s) is not supported. + * + * @since 6.3 */ protected RevCommit[] parents;