fix unused declaration (IDEA-110436)

This commit is contained in:
anna
2013-07-16 12:56:51 +02:00
parent a88c0f0547
commit 5bfd6e16c7
2 changed files with 2 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ public class DummyEntryPointsEP extends InspectionEP {
public DummyEntryPointsEP() {
presentation = DummyEntryPointsPresentation.class.getName();
displayName = InspectionsBundle.message("inspection.dead.code.entry.points.display.name");
shortName = "";
}
@NotNull

View File

@@ -29,7 +29,7 @@ public class DummyEntryPointsPresentation extends UnusedDeclarationPresentation
private static final RefEntryPointFilter myFilter = new RefEntryPointFilter();
private QuickFixAction[] myQuickFixActions;
public DummyEntryPointsPresentation(UnusedDeclarationInspection inspection, @NotNull InspectionToolWrapper toolWrapper) {
public DummyEntryPointsPresentation(@NotNull InspectionToolWrapper toolWrapper) {
super(toolWrapper);
}