Reports usage of statically imported members qualified with their containing class name.

Such qualification is unnecessary and can be removed because statically imported members can be accessed directly by member name.

Example:

  import static foo.Test.WIDTH;

  class Bar {
    void bar() {
      System.out.println(Test.WIDTH);
    }
  }

After the quick-fix is applied:

  import static foo.Test.WIDTH;

  class Bar {
    void bar() {
      System.out.println(WIDTH);
    }
  }