Skip to content

Commit

Permalink
Using this.startDate consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
hmatt1 committed Jul 28, 2020
1 parent 2d6d719 commit fcd6655
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ public ProcessInstanceInfo(ProcessInstance processInstance) {
this.processId = processInstance.getProcessId();

if (((WorkflowProcessInstanceImpl) this.processInstance).getStartDate() == null) {
startDate = new Date();
this.startDate = new Date();
((WorkflowProcessInstanceImpl) processInstance).internalSetStartDate(this.startDate);
} else {
startDate = ((WorkflowProcessInstanceImpl) this.processInstance).getStartDate();
this.startDate = ((WorkflowProcessInstanceImpl) this.processInstance).getStartDate();
}
}

Expand Down

0 comments on commit fcd6655

Please sign in to comment.