Fix implements in class ResponseResult (#675)

Fixed inheritance of interface on ResultedEvent.Result in ResponseResult class
This commit is contained in:
microwin7
2022-04-04 00:43:32 +03:00
committed by GitHub
parent b8223686ea
commit 44dc2e7ca0

View File

@@ -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);