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

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

The newest version!
Inconsistently ordered parameters in method overrides mostly indicate an
accidental bug in the overriding method. An example for an overriding method
with inconsistent parameter names:

```java
class A {
  public void foo(int foo, int baz) { ... }
}

class B extends A {
  @Override
  public void foo(int baz, int foo) { ... }
}
```




© 2015 - 2025 Weber Informatics LLC | Privacy Policy