rules.NoWhitespaceBefore.md Maven / Gradle / Ivy
Checks that there is no whitespace before the comma operator (','), statement terminator (';'), postfix increment ('++') or postfix decrement ('--').
Valid:
````
int y = {1, 2};
doSomething();
i++;
i--;
````
Invalid:
````
int y = {1 , 2};
doSomething() ;
i ++;
i --;
````
© 2015 - 2024 Weber Informatics LLC | Privacy Policy