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

rules.ForbidCCommentsInMethods.md Maven / Gradle / Ivy


Prevents the use of `/* C-style */` comments inside methods.

Valid:
````
void doSomething() {
    // a comment
}
````

Invalid:
````
void doSomething() {
    /* invalid */
}
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy