Look for qualified this usages in the same class.

Examples:

    Positive example:
    List t   = Arrays.asList("a","b","c");
    //warn
    t.add("22");
    //warn
    t.remove("22");
    //warn
    t.clear();