rules.EmptyForIteratorPad.md Maven / Gradle / Ivy
Checks that there is no padding in an empty `for` loop **iterator**.
Valid:
````
for (Iterator i = list.getIterator(); i.hasNext() ;) {}
````
Invalid:
````
for (Iterator i = list.getIterator(); i.hasNext() ; ) {}
````
© 2015 - 2024 Weber Informatics LLC | Privacy Policy