how accurate is the view/decompile bytecode featur...
# announcements
t
how accurate is the view/decompile bytecode feature? i have this annotation:
Copy code
@OnWebSocketClose
fun onClose(session: Session, statusCode: Int, reason: String) = ...
which doesn't fire, but if i create a java-file with the decompiled bytecode:
Copy code
@OnWebSocketClose
public final void onClose(@NotNull Session session, int statusCode, @NotNull String reason) {
    ...
}
everything works as expected