You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (nullTransient && Modifier.isTransient(field.getModifiers())) {
final Class<?> type = field.getType();
if (!type.isPrimitive()) {
field.set(newInstance, null);
}
}
IllegalArgumentException arise at "field.set(newInstance, null)" because field and newInstance come form different classloader.
The text was updated successfully, but these errors were encountered:
if (nullTransient && Modifier.isTransient(field.getModifiers())) {
final Class<?> type = field.getType();
if (!type.isPrimitive()) {
field.set(newInstance, null);
}
}
IllegalArgumentException arise at "field.set(newInstance, null)" because field and newInstance come form different classloader.
The text was updated successfully, but these errors were encountered: