// "Replace with a null check" "true" class Test { void test(String s) { Object obj = s; if (!(obj instanceof String)) { return; } System.out.println("always"); } }