JavaMapForEachInspection: don't report if argument is not single

#KT-39151 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-05-25 20:28:05 +09:00
committed by Yan Zhulanow
parent 7d3b28d75b
commit 2a36a8acac
3 changed files with 17 additions and 0 deletions
@@ -5160,6 +5160,11 @@ public class LocalInspectionTestGenerated extends AbstractLocalInspectionTest {
public void testKotlin2() throws Exception {
runTest("idea/testData/inspectionsLocal/javaMapForEach/kotlin2.kt");
}
@TestMetadata("notSingleArgument.kt")
public void testNotSingleArgument() throws Exception {
runTest("idea/testData/inspectionsLocal/javaMapForEach/notSingleArgument.kt");
}
}
@TestMetadata("idea/testData/inspectionsLocal/kdocMissingDocumentation")