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