mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 12:12:08 +08:00
删除不需要的泛型声明
This commit is contained in:
@@ -135,7 +135,7 @@ public abstract class NodeComponent{
|
||||
}
|
||||
}
|
||||
|
||||
public <T> void beforeProcess(String nodeId, Slot slot){
|
||||
public void beforeProcess(String nodeId, Slot slot){
|
||||
//全局切面只在spring体系下生效,这里用了spi机制取到相应环境下的实现类
|
||||
//非spring环境下,全局切面为空实现
|
||||
CmpAroundAspectHolder.loadCmpAroundAspect().beforeProcess(nodeId, slot);
|
||||
@@ -151,7 +151,7 @@ public abstract class NodeComponent{
|
||||
//如果需要在抛错后回调某一段逻辑,请覆盖这个方法
|
||||
}
|
||||
|
||||
public <T> void afterProcess(String nodeId, Slot slot){
|
||||
public void afterProcess(String nodeId, Slot slot){
|
||||
CmpAroundAspectHolder.loadCmpAroundAspect().afterProcess(nodeId, slot);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user