These literals may be replaced with equivalent character literals, gaining some performance enhancement.
Example:
String hello = hell + "o";
After the quick-fix is applied:
String hello = hell + 'o';