blob: ace2d06e1df93a05651712b41843a943cad0806a [file] [log] [blame]
import org.jetbrains.annotations.Nullable;
public class NoWarnings {
int f(@Nullable String value) {
value = value == null ? "" : value;
return value.hashCode();
}
}