This commit is contained in:
James Agnew 2018-12-04 18:54:26 -05:00
parent 1d3bcd9e8f
commit 29af6160d6
1 changed files with 1 additions and 1 deletions

View File

@ -896,7 +896,7 @@ public abstract class BaseHapiFhirResourceDao<T extends IBaseResource> extends B
T retVal = toResource(myResourceType, entity, null, false); T retVal = toResource(myResourceType, entity, null, false);
if (theForHistory == false) { if (theDeletedOk == false) {
if (entity.getDeleted() != null) { if (entity.getDeleted() != null) {
throw new ResourceGoneException("Resource was deleted at " + new InstantType(entity.getDeleted()).getValueAsString()); throw new ResourceGoneException("Resource was deleted at " + new InstantType(entity.getDeleted()).getValueAsString());
} }