Search in sources :

Example 1 with StreamToLoopInspection

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 };
}
Also used : StreamToLoopInspection(com.intellij.codeInspection.streamToLoop.StreamToLoopInspection) LocalInspectionTool(com.intellij.codeInspection.LocalInspectionTool) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

LocalInspectionTool (com.intellij.codeInspection.LocalInspectionTool)1 StreamToLoopInspection (com.intellij.codeInspection.streamToLoop.StreamToLoopInspection)1 NotNull (org.jetbrains.annotations.NotNull)1