blob: 11d4e1e11ab35f6a2d3a7cd1b7d26a757326b166 [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= "Gruezi";
return gruezi + (WOHL ? " Wohl" : "") + "!";
}
private boolean wohl() {
return WOHL;
}
}