|
|
|
@ -70,7 +70,8 @@ public class CompleteTaskBo implements Serializable {
|
|
|
|
|
|
|
|
|
|
|
|
public Map<String, Object> getVariables() {
|
|
|
|
public Map<String, Object> getVariables() {
|
|
|
|
if (variables == null) {
|
|
|
|
if (variables == null) {
|
|
|
|
return new HashMap<>(16);
|
|
|
|
variables = new HashMap<>(16);
|
|
|
|
|
|
|
|
return variables;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
variables.entrySet().removeIf(entry -> Objects.isNull(entry.getValue()));
|
|
|
|
variables.entrySet().removeIf(entry -> Objects.isNull(entry.getValue()));
|
|
|
|
return variables;
|
|
|
|
return variables;
|
|
|
|
|