// "Replace 'if' statement with 'Objects.requireNonNullElse()' call" "GENERIC_ERROR_OR_WARNING" import java.util.*; class Util { String method(String s) {return s;} } class Test { public void test(String o) { Object another; if(o == null) { Util.method("Hello"); } else { Util.method(o); } } }