mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-04 02:26:23 +02:00
cancelable event results are nullable
This commit is contained in:
parent
6371cd4c5a
commit
18bd63076f
@ -18,17 +18,24 @@
|
|||||||
*/
|
*/
|
||||||
package com.plotsquared.core.events;
|
package com.plotsquared.core.events;
|
||||||
|
|
||||||
|
|
||||||
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* PlotSquared event with {@link Result} to cancel, force, or allow.
|
* PlotSquared event with {@link Result} to cancel, force, or allow.
|
||||||
*/
|
*/
|
||||||
public interface CancellablePlotEvent {
|
public interface CancellablePlotEvent {
|
||||||
|
|
||||||
Result getEventResult();
|
@Nullable Result getEventResult();
|
||||||
|
|
||||||
void setEventResult(Result eventResult);
|
void setEventResult(@Nullable Result eventResult);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @deprecated No usage and not null-safe
|
||||||
|
*/
|
||||||
|
@Deprecated(since = "TODO")
|
||||||
default int getEventResultRaw() {
|
default int getEventResultRaw() {
|
||||||
return getEventResult().getValue();
|
return getEventResult() != null ? getEventResult().getValue() : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user