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
It is not sufficient for the 'group' to be the only thing checked here for null. If the resource comes in with an ChangeableElementGroup that is empty, that needs to be checked too:
ChangeableElementGroup group = resource.getChangeableElementGroup();
if(group == null){
...
}
It is not sufficient for the 'group' to be the only thing checked here for
null
. If the resource comes in with anChangeableElementGroup
that is empty, that needs to be checked too:Change to something like:
The text was updated successfully, but these errors were encountered: