3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-16 21:10:30 +01:00

Fix implements in class ResponseResult (#675)

Fixed inheritance of interface on ResultedEvent.Result in ResponseResult class
Dieser Commit ist enthalten in:
microwin7 2022-04-04 00:43:32 +03:00 committet von GitHub
Ursprung b8223686ea
Commit 44dc2e7ca0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -114,7 +114,7 @@ public class ServerLoginPluginMessageEvent implements ResultedEvent<ResponseResu
+ '}';
}
public static class ResponseResult implements Result {
public static class ResponseResult implements ResultedEvent.Result {
private static final ResponseResult UNKNOWN = new ResponseResult(null);