You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Insert blank line between methods, but not between methods in an interface.
If i have 2 methods in a class, i like a blank line between them. However, when i declare an interface, i would prefer to keep them all without newlines.
publicclassBuzz{publicvoidfoo(){// do stuff}publicvoidbar(){// do stuff}}
and
publicinterfaceIBuzz{voidfoo();voidbar();}
I can get either situatoin with the Cleaning->Insert options, but not both.
nunogoncal, MladenTasevski, farahjr and mnowak1219