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

rules.TypecastParenPad.md Maven / Gradle / Ivy


Checks that there are no spaces within the typecasting parentheses.

Valid:
````
String s = (String) list.get(2);
````

Invalid:
````
String s = (String ) list.get(2);
String s = ( String) list.get(2);
String s = ( String ) list.get(2);
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy