infer_clone/infer/documentation/issues/CHECKERS_EXPENSIVE_OVERRIDE...

186 B

A method annotated with @Expensive overrides an un-annotated method.

Example:

interface I {
  void foo();
}

class A implements I {
  @Expensive
  public void foo() {}
}