use of com.intellij.codeInspection.streamToLoop.StreamToLoopInspection in project intellij-community by JetBrains.
the class StreamToLoopInspectionTest method configureLocalInspectionTools.
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
StreamToLoopInspection inspection = new StreamToLoopInspection();
inspection.SUPPORT_UNKNOWN_SOURCES = true;
return new LocalInspectionTool[] { inspection };
}
Aggregations