Currently, the ReplaceWith annotation tells IntelliJ to replace with subscribe(), which is not correct, since this will replace with subscribe().subscribe() in most cases, or even worse destroy things like asMono().map().subscribe(), replacing it with this, will tell the IDE to use the instance of PlayerUpdateBuilder as a Mono like it is intended
Currently, the ReplaceWith annotation tells IntelliJ to replace with
subscribe()
, which is not correct, since this will replace with subscribe().subscribe() in most cases, or even worse destroy things like asMono().map().subscribe(), replacing it with this, will tell the IDE to use the instance of PlayerUpdateBuilder as a Mono like it is intended