报告 assert 语句并建议将它们替换为抛出 java.lang.AssertionErrorif 语句。

示例:

  assert param != null;

在应用快速修复后:

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