Fixed coding style.
authorMarco Zanon <info@marcozanon.com>
Mon, 21 Mar 2022 11:53:17 +0000 (11:53 +0000)
committerMarco Zanon <info@marcozanon.com>
Mon, 21 Mar 2022 11:53:17 +0000 (11:53 +0000)
7.x/src/main/java/com/marcozanon/macaco/text/MTranslator.java

index a4deecf0ded99b72c5b04ab0fdb51f1398668723..215e0a470801ff833d94b764c1c188efaac672f7 100644 (file)
@@ -69,7 +69,9 @@ public class MTranslator extends MObject {
             throw new IllegalArgumentException("Invalid 'file': null or empty.");
         }
         //
-        try (LineNumberReader buffer = new LineNumberReader(new InputStreamReader(new FileInputStream(file), MConstants.TEXT_ENCODING))) {
+        try (
+            LineNumberReader buffer = new LineNumberReader(new InputStreamReader(new FileInputStream(file), MConstants.TEXT_ENCODING));
+        ) {
             String message = null;
             String line = null;
             synchronized (this.getMessages()) {