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

rules.OperatorWrap.md Maven / Gradle / Ivy


Checks that when wrapping a line on an operator that the operator appears on the new line.

Valid:
````
int answer = getTheAnswerToLife() + getTheAnswerToTheUniverse()
    + getTheAnswerToEverything();
````

Invalid:
````
int answer = getTheAnswerToLife() + getTheAnswerToTheUniverse() +
    getTheAnswerToEverything();
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy