Skip to content
Snippets Groups Projects
Commit 55626dd8 authored by Florian Lambers's avatar Florian Lambers
Browse files

changed read to input

parent 0a5b8f00
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ public class TestController {
if(e instanceof UserTaskFlowElement) {
UserTaskFlowElement ue = (UserTaskFlowElement) e;
int vrIndex = 0;
for(VariableReference vr : ue.getReadVariables()) {
for(VariableReference vr : ue.getInputVariables()) {
VariableValue vv = userInputDtos.get(index).getInputVariables().get(vrIndex);
vv.setVariable(vr.getRef().getName());
vv.setValue(null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment