// "Simplify 'obj instanceof String str' to true" "true" class Test { void test(Object obj) { if (obj instanceof String) { if (obj instanceof String str && str.isEmpty()) { } } } }