Beispiel

public static void main(String[] args){
String str = new String("Example"); //$NON-NLS-1$
System.out.println(str);
}


Solution
Den Aufruf für 'new' entfernen
  1. Aufruf 'String x = new String( value )' durch 'String x = value' ersetzen

public static void main(String[] args){
String str = "Example"; //$NON-NLS-1$
System.out.println(str);
}