Code cleanup and formatting. Migrated to java 1.8.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / data / EnhancedDataOutputStream.java
index 89f08a9..d202ba6 100755 (executable)
@@ -16,27 +16,27 @@ import java.util.List;
 
 public class EnhancedDataOutputStream extends DataOutputStream {
 
-       public EnhancedDataOutputStream(final OutputStream out) {
-               super(out);
-       }
+    public EnhancedDataOutputStream(final OutputStream out) {
+        super(out);
+    }
 
-       public void writeIntegerList(final List<Integer> list) throws IOException {
-               writeInt(list.size());
+    public void writeIntegerList(final List<Integer> list) throws IOException {
+        writeInt(list.size());
 
-               for (final Integer integer : list)
-                       writeInt(integer);
-       }
+        for (final Integer integer : list)
+            writeInt(integer);
+    }
 
-       public void writeString(final String string) throws IOException {
-               if (string == null) {
-                       writeInt(-1);
-                       return;
-               }
+    public void writeString(final String string) throws IOException {
+        if (string == null) {
+            writeInt(-1);
+            return;
+        }
 
-               final byte[] bytes = string.getBytes("UTF-8");
+        final byte[] bytes = string.getBytes("UTF-8");
 
-               writeInt(bytes.length);
-               write(bytes);
-       }
+        writeInt(bytes.length);
+        write(bytes);
+    }
 
 }