From 4478f2dc4a3070686b4843a0ad485ccdbc8bccd9 Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Wed, 20 Jun 2012 13:06:53 +0400 Subject: [PATCH] Test for unnecessary non-null assertion fixed --- .../quickfix/expressions/afterUnnecessaryNonNullAssertion1.kt | 2 +- .../quickfix/expressions/beforeUnnecessaryNonNullAssertion1.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/idea/testData/quickfix/expressions/afterUnnecessaryNonNullAssertion1.kt b/idea/testData/quickfix/expressions/afterUnnecessaryNonNullAssertion1.kt index 586f9af4454..dd12e4a5f8a 100644 --- a/idea/testData/quickfix/expressions/afterUnnecessaryNonNullAssertion1.kt +++ b/idea/testData/quickfix/expressions/afterUnnecessaryNonNullAssertion1.kt @@ -1,4 +1,4 @@ -// "Replace with dot call" "true" +// "Remove unnecessary non-null assertion (!!)" "true" fun test(value : Int) : Int { value } diff --git a/idea/testData/quickfix/expressions/beforeUnnecessaryNonNullAssertion1.kt b/idea/testData/quickfix/expressions/beforeUnnecessaryNonNullAssertion1.kt index b8429efce64..fd1312a806e 100644 --- a/idea/testData/quickfix/expressions/beforeUnnecessaryNonNullAssertion1.kt +++ b/idea/testData/quickfix/expressions/beforeUnnecessaryNonNullAssertion1.kt @@ -1,4 +1,4 @@ -// "Replace with dot call" "true" +// "Remove unnecessary non-null assertion (!!)" "true" fun test(value : Int) : Int { value!! }