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

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

The newest version!
Creating a side-effect-free anonymous class and never using it is usually a
mistake.

For example:

```java
public static void main(String[] args) {
  new Thread(new Runnable() {
    @Override public void run() {
      preventMissionCriticalDisasters();
    }
  }); // did you mean to call Thread#start()?
}
```




© 2015 - 2025 Weber Informatics LLC | Privacy Policy