Reports method references or lambda expressions which point to a method of their own functional interface type and hence can be replaced with their qualifiers, like
SwingUtilities.invokeLater(r::run);
SwingUtilities.invokeAndWait(() -> r.run());
can be replaced with
SwingUtilities.invokeLater(r);
SwingUtilities.invokeAndWait(r);