git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1090811 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2011-04-10 14:51:19 +00:00
parent 5bc9b57f4e
commit a681d650f6
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ public class ReflectionToStringBuilder extends ToStringBuilder {
* @return The toString value.
*/
public static String toStringExclude(Object object, final String excludeFieldName) {
return toStringExclude(object, new String[]{excludeFieldName});
return toStringExclude(object, new String[] { excludeFieldName });
}
/**