Skip to content

Commit

Permalink
MOD: code style
Browse files Browse the repository at this point in the history
  • Loading branch information
stalary committed Sep 26, 2022
1 parent a3743a1 commit 706a40c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,11 @@ protected int createComplementCommandList(String scheduleTimeParam, RunMode runM
logger.info("Creating command, commandInfo:{}.", command);
createCount = processService.createCommand(command);
if (createCount > 0)
logger.info("Create {} command complete, processDefinitionCode:{}", command.getCommandType().getDescp(), command.getProcessDefinitionCode());
logger.info("Create {} command complete, processDefinitionCode:{}",
command.getCommandType().getDescp(), command.getProcessDefinitionCode());
else
logger.error("Create {} command error, processDefinitionCode:{}", command.getCommandType().getDescp(), command.getProcessDefinitionCode());
logger.error("Create {} command error, processDefinitionCode:{}",
command.getCommandType().getDescp(), command.getProcessDefinitionCode());
}
if (startDate != null && endDate != null) {
cmdParam.put(CMDPARAM_COMPLEMENT_DATA_START_DATE, startDate);
Expand Down Expand Up @@ -1119,7 +1121,6 @@ private String removeDuplicates(String scheduleTimeList) {

/**
* query executing data of processInstance by master
*
* @param processInstanceId
* @return
*/
Expand Down

0 comments on commit 706a40c

Please sign in to comment.