Why is it bad practice to declare variables on one line?
e.g.
private String var1, var2, var3
instead of:
private
Here's my reasons: