// "Replace 'switch' with 'if'" "true-preview" public class One { void f1(String a) { switch (a) { case "one": System.out.println(1); case null, default: System.out.println("default"); } } }