-1

I am currently looking for a program/tool that enhances the readability of a Java code. For example that it can convert the expression x=y +z+ 3; into x = y + z + 3; or the one of

public class Example
         {
             public static...

Thanks!

rptwsthi
  • 10,094
  • 10
  • 68
  • 109

1 Answers1

3

Eclipse's "format on save" trigger will do that for you see here

Srdjan Grubor
  • 2,605
  • 15
  • 17