mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Use var instead of explicit types
This commit is contained in:
parent
03c30519b1
commit
de273586b4
77 changed files with 850 additions and 1017 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue