Fix typo
This commit is contained in:
parent
1d3bcd9e8f
commit
29af6160d6
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue