瀏覽代碼

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

AE86 5 年之前
父節點
當前提交
22a93eb271
共有 1 個文件被更改,包括 0 次插入24 次删除
  1. 0 24
      dbsyncer-common/src/main/java/org/dbsyncer/common/event/IncrementRefreshEvent.java

+ 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;
-    }
-}