From 64c7770b56c78cf45b22ed1d0fcbf94eb25172fa Mon Sep 17 00:00:00 2001 From: Him188 Date: Sat, 16 Jan 2021 15:10:16 +0800 Subject: [PATCH] Update UsingStringPlusMessage inspection message --- .../UsingStringPlusMessage.html | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/tools/intellij-plugin/resources/inspectionDescriptions/UsingStringPlusMessage.html b/tools/intellij-plugin/resources/inspectionDescriptions/UsingStringPlusMessage.html index c2473ef5d..c18d41680 100644 --- a/tools/intellij-plugin/resources/inspectionDescriptions/UsingStringPlusMessage.html +++ b/tools/intellij-plugin/resources/inspectionDescriptions/UsingStringPlusMessage.html @@ -1,14 +1,8 @@ -

Write your description here. - Start the description with a verb in 3rd person singular, like reports, detects, highlights. - In the first sentence, briefly explain what exactly the inspection helps you detect. - Make sure the sentence is not very long and complicated. - The first sentence must be in a dedicated paragraph separated from the rest of the text. This will make the - description easier to read. - Make sure the description doesn’t just repeat the inspection title. -

+

Detects `String + Message` calls.

-

Text after this comment will only be shown in the settings of the inspection.

+

Detects `String + Message` calls. `String + Message` is essentially `String + Message.toString()` and is different + from `Message + Message`. Such conversions are implicit and may lead to confusing behavior.

\ No newline at end of file