package com.siyeh.igfixes.performance.replace_with_isempty; public class NullCheck { void foo(String s) { if (s != null && s.isEmpty()) {} } }