Skip to content

Commit

Permalink
Merge pull request #105 from diverse-project/fixGetResult
Browse files Browse the repository at this point in the history
Fix error in command.getResult()
  • Loading branch information
dvojtise authored Oct 11, 2023
2 parents 5dc7241 + 50222d4 commit e2ec3b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ if («SELF_VAR_NAME» instanceof «Helper::getAspectedClassName(dt)»){
command.execute();
}
«IF hasReturn»
«resultVar» = command.getResult().get();
«resultVar» = command.getResult().get(0);
«ENDIF»
'''
}
Expand Down

0 comments on commit e2ec3b8

Please sign in to comment.