blob: 7ee108da43446c20cb51a8d80baa27f9b9bc775f [file] [log] [blame]
package com.siyeh.igfixes.performance.replace_with_isempty;
public class NullCheck {
void foo(String s) {
if (s != null && s.isEmpty()) {}
}
}