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:
parent
425d057739
commit
4792f854b0
|
@ -2577,8 +2577,13 @@ public abstract class ToStringStyle implements Serializable {
|
||||||
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 + "\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue