Fixed recursion
This commit is contained in:
parent
ae173ccbd4
commit
861ddc0f4b
|
@ -196,7 +196,7 @@ public class CKANPackage extends CKAN {
|
||||||
protected String getCurrentContext() {
|
protected String getCurrentContext() {
|
||||||
if(currentContext == null) {
|
if(currentContext == null) {
|
||||||
currentContext = ContextUtility.getCurrentContext();
|
currentContext = ContextUtility.getCurrentContext();
|
||||||
currentScopeBean = new ScopeBean(getCurrentContext());
|
currentScopeBean = new ScopeBean(currentContext);
|
||||||
}
|
}
|
||||||
return currentContext;
|
return currentContext;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue