3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 14:40:21 +02:00
Dieser Commit ist enthalten in:
Andrew Steinborn 2023-05-14 04:37:32 -04:00
Ursprung d1030c3096
Commit 3579532892

Datei anzeigen

@ -319,7 +319,7 @@ public class VelocityEventManager implements EventManager {
if (returnType != void.class && continuationType == Continuation.class) { if (returnType != void.class && continuationType == Continuation.class) {
errors.add("method return type must be void if a continuation parameter is provided"); errors.add("method return type must be void if a continuation parameter is provided");
} else if (returnType != void.class && returnType != EventTask.class) { } else if (returnType != void.class && returnType != EventTask.class) {
errors.add("method return type must be void, AsyncTask, " errors.add("method return type must be void, EventTask, "
+ "EventTask.Basic or EventTask.WithContinuation"); + "EventTask.Basic or EventTask.WithContinuation");
} else if (returnType == EventTask.class) { } else if (returnType == EventTask.class) {
asyncType = AsyncType.SOMETIMES; asyncType = AsyncType.SOMETIMES;