D]
Sent by:[EMAIL PROTECTED]
To:[EMAIL PROTECTED]
cc:
Subject:String class is final: SerializationContextImpl.java
The String class is final so that in the method:
public boolean isPrimitive(Object value, Class javaType)
in the file:
if (String.class.isAssignableFrom(javaTy
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