Why is it bad practice to declare variables on one line?
e.g.
private String var1, var2, var3
instead of:
private
With separate lines, you have the opportunity to add a comment on each line describing the use of the variable (if it isn't clear from its name).