Fixing noinspection warning

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-02-20 13:42:53 -06:00
parent 8594fd371e
commit e894da5b21
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 6 deletions

View File

@ -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;