In some of my code has suddenly changed format in that before every period and = sign a number of spaces followed by a newline character have appeared, as in the following snatch of code. This is only in a few of my java classes, and it has happened several times. Have I possibly inadvertently changed something in the formatting layout?
int oldVel
= jSliderVelocity
.getValue();
// Get vel from txt field and set slider accordingly
int vel
= Integer
.parseInt(jTextFieldVelocity
.getText());
int start
= jSliderVelocity
.getMinimum();