use of com.intellij.codeInspection.deadCode.DummyEntryPointsEP in project intellij-community by JetBrains.
the class EntryPointsNode method createDummyWrapper.
private static InspectionToolWrapper createDummyWrapper(@NotNull GlobalInspectionContextImpl context) {
InspectionToolWrapper toolWrapper = new GlobalInspectionToolWrapper(new DummyEntryPointsEP());
toolWrapper.initialize(context);
return toolWrapper;
}
Aggregations