Example

public class ClassA implements Interface1, Interface2 {

}

public interface Interface2 extends Interface1 {

}


Solution
Remove the interface which is redundantly implemented through inheritance.

public class ClassA implements Interface2 {

}