A swipe of Occam's razor.

This commit is contained in:
Michael Bayne
2012-04-13 16:09:02 +00:00
parent 90d01ce58d
commit 781564f9e0
@@ -75,7 +75,7 @@ public abstract class FieldMarshaller<T>
// non-standard type because this search is somewhat expensive // non-standard type because this search is somewhat expensive
Class<?> ftype = field.getType(); Class<?> ftype = field.getType();
if (!STOCK_MARSH.containsKey(ftype)) { if (!STOCK_MARSH.containsKey(ftype)) {
xform = findTransformAnnotation(field.getType()); xform = findTransformAnnotation(ftype);
} }
} }