Specifically what I want is when I use the quick fix "surround with try/catch" to not add extra newlines. "surround with try/catch" shows up as a quick fix option when you mouse over code which throws a exception. For example this code shows a quick fix option:
m_tsocket = new ServerSocket(port);
And it becomes this when "surround with try/catch" is used:
try {
m_tsocket = new ServerSocket(port);
} catch (IOException e1) {}
What I want is for the "surround with try/catch" to give me this instead:
try {m_tsocket = new ServerSocket(port);} catch (IOException e1) {}
The point is I dont need the extra newlines except in rare cases. The newlines makes it take longer time to scroll through the code. Most of the code is inside the catch and I handle that after Ive done the general code structure.