mirror of
https://github.com/aljazceru/signal-cli.git
synced 2025-12-19 15:14:21 +01:00
Use var instead of explicit types
This commit is contained in:
@@ -20,7 +20,7 @@ public final class PlainTextWriterImpl implements PlainTextWriter {
|
||||
|
||||
@Override
|
||||
public void println(String format, Object... args) throws IOException {
|
||||
final String message = MessageFormatter.arrayFormat(format, args).getMessage();
|
||||
final var message = MessageFormatter.arrayFormat(format, args).getMessage();
|
||||
|
||||
writer.write(message);
|
||||
writer.write(System.lineSeparator());
|
||||
|
||||
Reference in New Issue
Block a user