Archived
0

избавляемся от ненужного

This commit is contained in:
2018-11-18 23:48:44 +03:00
parent 78b5be88e7
commit 9f9988903f
2 changed files with 0 additions and 12 deletions

View File

@@ -1,13 +1,6 @@
/*
* DmitriyMX <dimon550@gmail.com>
* 2018-05-02
*/
package mc.core.eventbus;
public interface Event {
void setCanceled(boolean value);
boolean isCanceled();
void setLastProcess(boolean value);
boolean isLastProcess();
}

View File

@@ -1,7 +1,3 @@
/*
* DmitriyMX <dimon550@gmail.com>
* 2018-05-02
*/
package mc.core.eventbus;
import lombok.Getter;
@@ -11,5 +7,4 @@ import lombok.Setter;
@Setter
public abstract class EventBase implements Event {
private boolean canceled;
private boolean lastProcess;
}