Răsfoiți Sursa

删除文件 dbsyncer-common/src/main/java/org/dbsyncer/common/event/IncrementRefreshEvent.java

AE86 5 ani în urmă
părinte
comite
22a93eb271

+ 0 - 24
dbsyncer-common/src/main/java/org/dbsyncer/common/event/IncrementRefreshEvent.java

@@ -1,24 +0,0 @@
-package org.dbsyncer.common.event;
-
-import org.dbsyncer.common.model.Task;
-import org.springframework.context.ApplicationContext;
-import org.springframework.context.event.ApplicationContextEvent;
-
-public class IncrementRefreshEvent extends ApplicationContextEvent {
-
-    private Task task;
-
-    /**
-     * Create a new ContextStartedEvent.
-     *
-     * @param source the {@code ApplicationContext} that the event is raised for (must not be {@code null})
-     */
-    public IncrementRefreshEvent(ApplicationContext source, Task task) {
-        super(source);
-        this.task = task;
-    }
-
-    public Task getTask() {
-        return task;
-    }
-}