From a73856be6661d7e245924777b0ffa1b9a0494a65 Mon Sep 17 00:00:00 2001 From: Vladimir Dolzhenko Date: Thu, 10 Sep 2020 08:20:54 +0000 Subject: [PATCH] Add warn message to ReplaceWithIgnoreCaseEquals inspection. Relates to ^KT-40016 --- .../inspectionDescriptions/ReplaceWithIgnoreCaseEquals.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/idea/resources-en/inspectionDescriptions/ReplaceWithIgnoreCaseEquals.html b/idea/resources-en/inspectionDescriptions/ReplaceWithIgnoreCaseEquals.html index bef88ce7815..dd6add4d91a 100644 --- a/idea/resources-en/inspectionDescriptions/ReplaceWithIgnoreCaseEquals.html +++ b/idea/resources-en/inspectionDescriptions/ReplaceWithIgnoreCaseEquals.html @@ -12,5 +12,7 @@ fun main() { println(a.toLowerCase() == b.toLowerCase()) // can be replaced with "a.equals(b, ignoreCase = true)" } +

+Note: May change semantics for some locales.