Fix incorrect message format parameter. #1555

Fixes ` UnusedMessageFormatParameter` inspection violation introduced in #1648.

Description:
>This inspection reports properties values which looks like java.text.MessageFormat format strings but do not use some of the parameters of {xx} kind.
For example:
```
# parameter {0} is not used
error.message=Something happened in line {1}
```
This commit is contained in:
Michal Kordas 2015-08-18 21:55:54 +02:00 committed by Roman Ivanov
parent bbe93aec4f
commit 71b78a97aa
1 changed files with 1 additions and 1 deletions

View File

@ -14,4 +14,4 @@ custom.import.order=Import statement for ''{2}'' is in the wrong order. Should b
custom.import.order.line.separator=''{0}'' should be separated from previous import group.
custom.import.order.lex=Wrong lexicographical order for ''{0}'' import. Should be before ''{1}''.
custom.import.order.nongroup.import=Imports without groups should be placed at the end of the import list: ''{0}''.
custom.import.order.nongroup.expected=Import statement for ''{2}'' is in the wrong order. Should be in the ''{0}'' group, expecting not assigned imports on this line.
custom.import.order.nongroup.expected=Import statement for ''{1}'' is in the wrong order. Should be in the ''{0}'' group, expecting not assigned imports on this line.