writeSettings seems unneeded

This commit is contained in:
Bas Leijdekkers
2013-07-30 21:36:09 +02:00
parent 97b17a5a8e
commit 3ce80167d3

View File

@@ -41,16 +41,6 @@ public class RawUseOfParameterizedTypeInspection extends BaseInspection {
@SuppressWarnings("PublicField") public boolean ignoreParametersOfOverridingMethods = false;
@Override
public void writeSettings(@NotNull Element node) throws WriteExternalException {
node.addContent(new Element("option").setAttribute("name", "ignoreObjectConstruction").setAttribute("value", String.valueOf(ignoreObjectConstruction)));
node.addContent(new Element("option").setAttribute("name", "ignoreTypeCasts").setAttribute("value", String.valueOf(ignoreTypeCasts)));
node.addContent(new Element("option").setAttribute("name", "ignoreUncompilable").setAttribute("value", String.valueOf(ignoreUncompilable)));
if (ignoreParametersOfOverridingMethods) {
node.addContent(new Element("option").setAttribute("name", "ignoreParametersOfOverridingMethods").setAttribute("value", "true"));
}
}
@Override
@NotNull
public String getDisplayName() {