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(p.getType()!=null && p.getType().isImmutable()) {
if (p.isContainer()) {
throw new RuntimeException("Immutable type '" + t.getFullTypeName()
+ "' cannot be contained in type '"
+ p.getType().getFullTypeName() + "' (parameter: '" + p.getName()+"').");
} else if (p.isContained()) {
throw new RuntimeException("Immutable type '" + t.getFullTypeName()
+ "' cannot be container of type '"
+ p.getType().getFullTypeName() + "' (parameter: '" + p.getName()+"').");
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: