Processing Net : avoid print disconnection message

Apart from the messy lack of indentation, it looks gr8! :+1:

However, if we directly invoke Server::dispose() instead of Server::stop(), your stopIsRequested β€œtrap” is skipped! :fearful:

So you should place it inside Server::dispose() instead; given Server::stop() is merely an alias of it. :wink:

BtW, no need to prefix stopIsRequested w/ keyword this in Java: :coffee:
Just stopIsRequested = true; works alright! :innocent:

P.S.: I’ve edited & included the stopRequested flag to my own version too! :crazy_face: