refactor: remove repeat check code (#3501)
This commit is contained in:
parent
9fa818cbc9
commit
ca596457b0
|
|
@ -37,11 +37,6 @@ public class ParamFlowSlot extends AbstractLinkedProcessorSlot<DefaultNode> {
|
||||||
@Override
|
@Override
|
||||||
public void entry(Context context, ResourceWrapper resourceWrapper, DefaultNode node, int count,
|
public void entry(Context context, ResourceWrapper resourceWrapper, DefaultNode node, int count,
|
||||||
boolean prioritized, Object... args) throws Throwable {
|
boolean prioritized, Object... args) throws Throwable {
|
||||||
if (!ParamFlowRuleManager.hasRules(resourceWrapper.getName())) {
|
|
||||||
fireEntry(context, resourceWrapper, node, count, prioritized, args);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
checkFlow(resourceWrapper, count, args);
|
checkFlow(resourceWrapper, count, args);
|
||||||
fireEntry(context, resourceWrapper, node, count, prioritized, args);
|
fireEntry(context, resourceWrapper, node, count, prioritized, args);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue