I don't know how this Javadoc got here, but it predates the code refactor done by Constantine Plotnikov in 2564768e63. The documentation is incorrect, as the method returns a single string but the summary line says a list. Since we usually don't document a private method I'm removing the documentation block rather than correcting it. Signed-off-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- .../src/org/spearce/jgit/lib/Config.java | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/org.spearce.jgit/src/org/spearce/jgit/lib/Config.java b/org.spearce.jgit/src/org/spearce/jgit/lib/Config.java index 258dba5..76f780f 100644 --- a/org.spearce.jgit/src/org/spearce/jgit/lib/Config.java +++ b/org.spearce.jgit/src/org/spearce/jgit/lib/Config.java @@ -385,17 +385,6 @@ public String getString(final String section, String subsection, return result; } - /** - * Get a list of string values - * - * @param section - * the section - * @param subsection - * the subsection for the value - * @param name - * the key name - * @return a raw string value as it is stored in configuration file - */ private String getRawString(final String section, final String subsection, final String name) { final Object o = getRawEntry(section, subsection, name); -- 1.6.4.rc2.216.g769fa -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html