All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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