Mention null return in Javadoc of Config#getString

Change-Id: Ibf09395fb3ac4d5d8f47872ed8f239c821bbee7a
Signed-off-by: Robin Stocker <robin@nibor.org>
This commit is contained in:
Robin Stocker 2013-11-29 17:16:23 +01:00
parent dcd0dd4d9e
commit 53c8ac0c60
1 changed files with 2 additions and 2 deletions

View File

@ -435,7 +435,7 @@ else if (StringUtils.equalsIgnoreCase(e.name(), "FALSE")) //$NON-NLS-1$
}
/**
* Get string value
* Get string value or null if not found.
*
* @param section
* the section
@ -443,7 +443,7 @@ else if (StringUtils.equalsIgnoreCase(e.name(), "FALSE")) //$NON-NLS-1$
* the subsection for the value
* @param name
* the key name
* @return a String value from git config.
* @return a String value from the config, <code>null</code> if not found
*/
public String getString(final String section, String subsection,
final String name) {