fix getInternalVOScopes method. Now it returns only the VO and root-vo

scopes
This commit is contained in:
Roberto Cirillo 2019-12-10 12:07:42 +01:00
parent ed50daf199
commit 5d32792908
1 changed files with 1 additions and 0 deletions

View File

@ -65,6 +65,7 @@ public class Utils {
ScopeBean scopeBean = new ScopeBean(scope);
if(scopeBean.is(Type.VRE))
vosScopes.add(scopeBean.enclosingScope().toString());
else
// if the scope is a root-vo scope, it will be added to the vosScope array
vosScopes.add(scope);
}