feat:() 优化
parent
cefbc152f7
commit
42e72a9960
|
@ -46,6 +46,6 @@ public class AddDatabaseListener implements EventListener {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onApplicationEvent(EventCustom event) {
|
public void onApplicationEvent(EventCustom event) {
|
||||||
onEvent(event);
|
this.onEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,6 +51,6 @@ public class FenceListener implements EventListener {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onApplicationEvent(EventCustom event) {
|
public void onApplicationEvent(EventCustom event) {
|
||||||
onEvent(event);
|
this.onEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,6 +51,6 @@ public class WarnRuleListener implements EventListener {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onApplicationEvent(EventCustom event) {
|
public void onApplicationEvent(EventCustom event) {
|
||||||
onEvent(event);
|
this.onEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,6 +75,6 @@ public class WarnRuleRespListener implements EventListener {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onApplicationEvent(EventCustom event) {
|
public void onApplicationEvent(EventCustom event) {
|
||||||
onEvent(event);
|
this.onEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue