NoSuchMethodError
when using the StompClient()
factory function without WS client
#251
Labels
bug
Something isn't working
This factory function is declared in the same package as the core module, and with an identical filename. This means that it ends up in the same class
StompClientKt
as the core module's functions, in particular the private top-level functionextractHost()
.This factory function should be removed, or moved to a different package to make it clear that it comes from another module and avoid such conflicts.
It may actually be worth removing this function entirely to avoid confusion in the setup as well.
The text was updated successfully, but these errors were encountered: