assert param != null;
Quick fix replaces it with if statement throwing an java.lang.AssertionError.
Example: if (param == null) throw new AssertionError();
if (param == null) throw new AssertionError();