Merge pull request #744 from hapifhir/gg-202202-ns-exp
Fix error accessing experimental on NamingSystem
This commit is contained in:
commit
15b168d819
|
@ -4,4 +4,4 @@
|
|||
|
||||
## Other code changes
|
||||
|
||||
* no changes
|
||||
* Fix error access experimental on canonical
|
||||
|
|
|
@ -554,6 +554,10 @@ public abstract class CanonicalResource extends DomainResource {
|
|||
return true;
|
||||
}
|
||||
|
||||
public boolean supportsExperimental() {
|
||||
return true;
|
||||
}
|
||||
|
||||
public String getVersionedUrl() {
|
||||
return hasVersion() ? getUrl()+"|"+getVersion() : getUrl();
|
||||
}
|
||||
|
|
|
@ -3044,6 +3044,10 @@ public class NamingSystem extends CanonicalResource {
|
|||
return false;
|
||||
}
|
||||
|
||||
public boolean supportsExperimental() {
|
||||
return false;
|
||||
}
|
||||
|
||||
// end addition
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue