I have an application written in Java which runs pretty slow. I was wondering if I remove all the spaces and line breaks (not to mention empty lines) will my app run faster?
non-YHBT answer: Are you making proper use of the JIT? Make sure you're using the server version instead of the client one. Did you profile your application to look for bottlenecks?