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

errorprone.bugpattern.MissingRefasterAnnotation.md Maven / Gradle / Ivy

The newest version!
A Refaster template consists of multiple methods. Typically, each method in the
class has an annotation. If a method has no annotation, this is likely an
oversight.

```java
static final class MethodLacksBeforeTemplateAnnotation {
  @BeforeTemplate
  boolean before1(String string) {
    return string.equals("");
  }

  // @BeforeTemplate is missing
  boolean before2(String string) {
    return string.length() == 0;
  }

  @AfterTemplate
  @AlsoNegation
  boolean after(String string) {
    return string.isEmpty();
  }
}
```




© 2015 - 2025 Weber Informatics LLC | Privacy Policy