From 00c76593f20b8958e3381e85f375ff83e3dc1f8c Mon Sep 17 00:00:00 2001 From: Kirill Rakhman Date: Fri, 19 Apr 2019 13:25:35 +0200 Subject: [PATCH] fix typo in test data --- .../collections/mutableSetOf.kt | 2 +- .../collections/mutableSetOf.kt.after | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt index 6fe2a67576e..4704432605b 100644 --- a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt +++ b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt @@ -1,6 +1,6 @@ // WITH_RUNTIME // MIN_JAVA_VERSION: 9 -// FIX: Replace with `mtableSetOf` function +// FIX: Replace with `mutableSetOf` function fun test() { val a = java.util.Set.of() diff --git a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after index c4ff629c518..3c5587b0162 100644 --- a/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after +++ b/idea/testData/inspectionsLocal/replaceJavaStaticMethodWithKotlinAnalog/collections/mutableSetOf.kt.after @@ -1,6 +1,6 @@ // WITH_RUNTIME // MIN_JAVA_VERSION: 9 -// FIX: Replace with `mtableSetOf` function +// FIX: Replace with `mutableSetOf` function fun test() { val a = mutableSetOf()