@@ -86,7 +86,7 @@ public List<FlowRecord> createRecord(long preId, FlowNode currentNode) {
8686 String recordTitle = currentNode .generateTitle (flowContent );
8787 List <FlowRecord > recordList = new ArrayList <>();
8888 for (IFlowOperator operator : operators ) {
89- FlowRecord record = currentNode .createRecord (workId , processId , preId , recordTitle , createOperator , operator , snapshot , opinion , flowSourceDirection );
89+ FlowRecord record = currentNode .createRecord (workId , processId , preId , recordTitle , createOperator , operator , snapshot , flowSourceDirection );
9090 recordList .add (record );
9191 }
9292 return recordList ;
@@ -146,7 +146,7 @@ private List<FlowRecord> errMatcher(FlowNode currentNode, long preId, IFlowOpera
146146 for (IFlowOperator operator : operators ) {
147147 FlowContent content = new FlowContent (flowWork , currentNode , createOperator , operator , snapshot .toBindData (), opinion , historyRecords );
148148 String recordTitle = currentNode .generateTitle (content );
149- FlowRecord record = currentNode .createRecord (flowWork .getId (), processId , preId , recordTitle , createOperator , operator , snapshot , opinion , flowSourceDirection );
149+ FlowRecord record = currentNode .createRecord (flowWork .getId (), processId , preId , recordTitle , createOperator , operator , snapshot , flowSourceDirection );
150150 recordList .add (record );
151151 }
152152 return recordList ;
@@ -164,7 +164,7 @@ private List<FlowRecord> errMatcher(FlowNode currentNode, long preId, IFlowOpera
164164 if (!matcherOperators .isEmpty ()) {
165165 for (IFlowOperator matcherOperator : matcherOperators ) {
166166 String recordTitle = node .generateTitle (content );
167- FlowRecord record = node .createRecord (flowWork .getId (), processId , preId , recordTitle , createOperator , matcherOperator , snapshot , opinion , flowSourceDirection );
167+ FlowRecord record = node .createRecord (flowWork .getId (), processId , preId , recordTitle , createOperator , matcherOperator , snapshot , flowSourceDirection );
168168 recordList .add (record );
169169 }
170170 }
0 commit comments