Reports assert statements and suggests replacing them with if statements that throw java.lang.AssertionError.

Example:


  assert param != null;

After the quick-fix is applied:


  if (param == null) throw new AssertionError();