mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-06-13 03:11:10 +08:00
调整FlowExecutor里的有些方法范围为private
This commit is contained in:
@@ -292,7 +292,7 @@ public class FlowExecutor {
|
||||
return this.execute(chainId, param, contextBeanClazz, null, false);
|
||||
}
|
||||
|
||||
public <T> T execute(String chainId, Object param, Class<T> contextBeanClazz,
|
||||
private <T> T execute(String chainId, Object param, Class<T> contextBeanClazz,
|
||||
Integer slotIndex, boolean isInnerChain) throws Exception {
|
||||
Slot<T> slot = this.doExecute(chainId, param, contextBeanClazz, slotIndex, isInnerChain);
|
||||
if (ObjectUtil.isNotNull(slot.getException())) {
|
||||
|
||||
Reference in New Issue
Block a user