Private methods in interfaces that are called by default methods are flagged with UPM_UNCALLED_PRIVATE_METHOD - "Private method xyz is never called". Example code: ``` public interface TestInterface { default void method() { privateMethod(); } private void privateMethod() { // this method is flagged } } ```