blob: f8d60c984742a6bc2c8225afe11fbae902782697 [file] [log] [blame]
// 7, 35 -> 7, 35 replaceAll == true, removeDeclaration == false;
package cantonzuerich;
public class GrueziWohl {
private static String gruezi= "Gruezi";
private static boolean jh= true;
private static final boolean WOHL= jh && "Gruezi".equals(gruezi);
public String holenGruss() {
String gruezi= "Grüezi";
return gruezi + (WOHL ? " Wohl" : "") + "!";
}
private boolean wohl() {
return WOHL;
}
}