The String class is final so that in the method:
public boolean isPrimitive(Object value, Class javaType)
in the file:
if (String.class.isAssignableFrom(javaType)) return true;
can be changed to:
if (String.class == javaType) return true;
Richard
