The AgentIn class is calling System.exit on unexpected EOF conditions. The following
changes fix the problem:
52,53c52
< isQuitting = true;
< client.quitEvent();
---
> System.exit(0);
95a95
> System.exit(0);
changes fix the problem:
52,53c52
< isQuitting = true;
< client.quitEvent();
---
> System.exit(0);
95a95
> System.exit(0);