Fixing noinspection warning
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
8594fd371e
commit
e894da5b21
|
@ -458,12 +458,7 @@ public class StdErrLog extends AbstractLogger
|
|||
|
||||
if (msg == null)
|
||||
{
|
||||
msg = "";
|
||||
for (int i = 0; i < msgArgsLen; i++)
|
||||
{
|
||||
//noinspection StringConcatenationInLoop
|
||||
msg += "{} ";
|
||||
}
|
||||
msg = "{} ".repeat(msgArgsLen);
|
||||
}
|
||||
String braces = "{}";
|
||||
int start = 0;
|
||||
|
|
Loading…
Reference in New Issue