Skip to content

Commit

Permalink
more merge bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gabehassler committed Nov 16, 2023
1 parent 253178d commit 679e304
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ public int getTraitDimension() {
return dimProcess;
}

@Override
public boolean isIntegratedProcess() {
return true;
}

@Override
protected int getParameterPartialDimension() {
return 2 * getParameter().getDimension();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public Object parseXMLObject(XMLObject xo) throws XMLParseException {
}
}

boolean integratedProcess = dataModel instanceof IntegratedProcessTraitDataModel; //TODO: can add to interface if that would be better
boolean integratedProcess = dataModel.isIntegratedProcess();

if (delegateProvider == DelegateProvider.OU) {
if (!integratedProcess) {
Expand Down

0 comments on commit 679e304

Please sign in to comment.