Browse Source

Add missing @since tags for new public methods in Config

Change-Id: I3b7937577c897a7e298ee431bd8c052cdb293dd9
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.2.0.201312181205-r
Matthias Sohn 10 years ago
parent
commit
be7942f2ba
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/Config.java View File

* if {@code true} recursively adds the names defined in all base * if {@code true} recursively adds the names defined in all base
* configurations * configurations
* @return the list of names defined for this section * @return the list of names defined for this section
* @since 3.2
*/ */
public Set<String> getNames(String section, boolean recursive) { public Set<String> getNames(String section, boolean recursive) {
return getState().getNames(section, null, recursive); return getState().getNames(section, null, recursive);
* if {@code true} recursively adds the names defined in all base * if {@code true} recursively adds the names defined in all base
* configurations * configurations
* @return the list of names defined for this subsection * @return the list of names defined for this subsection
* @since 3.2
*/ */
public Set<String> getNames(String section, String subsection, public Set<String> getNames(String section, String subsection,
boolean recursive) { boolean recursive) {

Loading…
Cancel
Save