extract some methods for readability

This commit is contained in:
Ken Stevens 2021-09-06 13:52:10 -04:00
parent ea153334fb
commit 4281648a33
1 changed files with 1 additions and 2 deletions

View File

@ -699,9 +699,8 @@ public abstract class BaseHapiFhirDao<T extends IBaseResource> extends BaseStora
});
boolean retval = !allTagsOld.equals(allTagsNew);
theEntity.setHasTags(!allTagsNew.isEmpty());
return retval;
return !allTagsOld.equals(allTagsNew);
}
@SuppressWarnings("unchecked")