Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-12-10 17:17:34 +0000
committerMatthias Sohn2013-12-11 22:27:36 +0000
commitbe7942f2ba046320f02e30598f204e4f47a16d35 (patch)
tree580177068752bcfbc55695ed82e439982a3e6b0e /org.eclipse.jgit
parentea04d2329d1283a3155ff26cfda7c46253f68854 (diff)
downloadjgit-be7942f2ba046320f02e30598f204e4f47a16d35.tar.gz
jgit-be7942f2ba046320f02e30598f204e4f47a16d35.tar.xz
jgit-be7942f2ba046320f02e30598f204e4f47a16d35.zip
Add missing @since tags for new public methods in Config
Change-Id: I3b7937577c897a7e298ee431bd8c052cdb293dd9 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-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) {

Back to the top