Fix error accessing experimental on NamingSystem
This commit is contained in:
parent
e1613a7087
commit
4983b0122c
|
@ -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