mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-17 02:15:22 +00:00
Fix failing tests for Unsupported method 2488
This commit is contained in:
parent
dfaf1babc0
commit
818b21e5ee
@ -813,7 +813,10 @@ public class VersionSpecificWorkerContextWrapper extends I18nBase implements IWo
|
||||
|
||||
@Override
|
||||
public <T extends Resource> T findTxResource(Class<T> class_, String canonical, Resource sourceOfReference) {
|
||||
throw new UnsupportedOperationException(Msg.code(2488));
|
||||
if (canonical == null) {
|
||||
return null;
|
||||
}
|
||||
return fetchResource(class_, canonical, sourceOfReference);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user