Example:
SwingUtilities.invokeLater(r::run);
SwingUtilities.invokeAndWait(() -> r.run());
After the quick-fix is applied:
SwingUtilities.invokeLater(r);
SwingUtilities.invokeAndWait(r);
This inspection only reports only if the language level of the project or module is 8 or higher.