summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java2
1 files changed, 2 insertions, 0 deletions
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 452ecddf42..22337e8131 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 class Config {
* 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<String> getNames(String section, boolean recursive) {
return getState().getNames(section, null, recursive);
@@ -548,6 +549,7 @@ public class Config {
* 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<String> getNames(String section, String subsection,
boolean recursive) {