rules.ParenPad.md Maven / Gradle / Ivy
Checks that there are no spaces padding parentheses.
Valid:
````
doSomething();
doSomethingElse(5);
````
Invalid:
````
doSomething( );
doSomethingElse( 5);
doSomethingElse(5 );
````
© 2015 - 2024 Weber Informatics LLC | Privacy Policy