class IsNullCheck { void bar() { final Value v = call(); if (Value.isNull(v)) { return; } if(v == null) {} } Value call() {return new Value();} }