6

I have spent my entire day code reviewing thinking ...
This developer must think all the lines are fighting with one another ..

I kid you not ! Every line of code has white space between it ....

To top it off ... all strings are initialized new String() then assigned to constants ......

*sigh*

Comments
  • 1
    Well i like to put white spaces between different parts of the code, it's easier for me to find what i need at glance. By this i mean separating declared variables from logical parts, and logical parts from eachother. I don't know if this is a common practice but it works for me

    Edit: I do agree about your post though. Separating every line like that and using a few lines for something like that can only be frustrating
Add Comment