Checkstyle: Add missing JavaDoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1654143 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2015-01-23 08:45:21 +00:00
parent 425d057739
commit 4792f854b0
1 changed files with 6 additions and 1 deletions

View File

@ -2577,8 +2577,13 @@ protected void appendDetail(StringBuffer buffer, String fieldName, Object value)
buffer.append(value); buffer.append(value);
} }
/**
* Appends the given String in parenthesis to the given StringBuffer.
*
* @param buffer the StringBuffer to append the value to.
* @param value the value to append.
*/
private void appendValueAsString(StringBuffer buffer, String value) { private void appendValueAsString(StringBuffer buffer, String value) {
buffer.append("\"" + value + "\""); buffer.append("\"" + value + "\"");
} }