From be7942f2ba046320f02e30598f204e4f47a16d35 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 10 Dec 2013 18:17:34 +0100 Subject: [PATCH] Add missing @since tags for new public methods in Config Change-Id: I3b7937577c897a7e298ee431bd8c052cdb293dd9 Signed-off-by: Matthias Sohn --- org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java index 452ecddf4..22337e813 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java @@ -534,6 +534,7 @@ public Set getNames(String section, String subsection) { * if {@code true} recursively adds the names defined in all base * configurations * @return the list of names defined for this section + * @since 3.2 */ public Set getNames(String section, boolean recursive) { return getState().getNames(section, null, recursive); @@ -548,6 +549,7 @@ public Set getNames(String section, boolean recursive) { * if {@code true} recursively adds the names defined in all base * configurations * @return the list of names defined for this subsection + * @since 3.2 */ public Set getNames(String section, String subsection, boolean recursive) {