Fix another issue with the log message in here. That would have looked strange indeed, in the logs.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5290 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Nathan Curtis
2008-08-04 18:49:42 +00:00
parent e14bbe5a02
commit d3d3528d83
@@ -76,7 +76,7 @@ public abstract class FieldMarshaller
if (reader != null && writer != null) {
return new MethodFieldMarshaller(reader, writer);
} else if (reader == null || writer == null) {
log.warning("Class contains one but not both custom field reader and writer" +
log.warning("Class contains one but not both custom field reader and writer",
"class", field.getDeclaringClass().getName(), "field", field.getName(),
"reader", reader, "writer", writer);
// fall through to using reflection on the fields...