From 904ea3329169fc98b1429419612a305dfdd8052a Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Mon, 28 Nov 2016 17:32:01 +0300 Subject: [PATCH] KT-12633 related test fix --- .../quickfix/platformTypesInspection/nullableRuntime.kt.after | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/quickfix/platformTypesInspection/nullableRuntime.kt.after b/idea/testData/quickfix/platformTypesInspection/nullableRuntime.kt.after index 3180fc80cee..ab00a7e7116 100644 --- a/idea/testData/quickfix/platformTypesInspection/nullableRuntime.kt.after +++ b/idea/testData/quickfix/platformTypesInspection/nullableRuntime.kt.after @@ -1,3 +1,3 @@ // "Specify return type explicitly" "true" -fun foo(): String? = java.lang.String.valueOf(1) \ No newline at end of file +fun foo(): String = java.lang.String.valueOf(1) \ No newline at end of file