Moved to java 1.8. Code cleanup and formatting.
[imagesqueeze.git] / src / main / java / eu / svjatoslav / imagesqueeze / codec / ImageMetaData.java
index 49e9000..c97bb32 100755 (executable)
@@ -14,27 +14,27 @@ package eu.svjatoslav.imagesqueeze.codec;
  * Like image dimensions, header version, compression quality, etc..
  */
 
-import java.io.IOException;
-
 import eu.svjatoslav.commons.data.BitInputStream;
 import eu.svjatoslav.commons.data.BitOutputStream;
 
+import java.io.IOException;
+
 public class ImageMetaData {
 
-       int version;
-       int width;
-       int height;
-
-       public void load(final BitInputStream inputStream) throws IOException {
-               version = inputStream.readBits(16);
-               width = ImageDecoder.readIntegerCompressed8(inputStream);
-               height = ImageDecoder.readIntegerCompressed8(inputStream);
-       }
-
-       public void save(final BitOutputStream outputStream) throws IOException {
-               outputStream.storeBits(version, 16);
-               ImageEncoder.storeIntegerCompressed8(outputStream, width);
-               ImageEncoder.storeIntegerCompressed8(outputStream, height);
-       }
+    int version;
+    int width;
+    int height;
+
+    public void load(final BitInputStream inputStream) throws IOException {
+        version = inputStream.readBits(16);
+        width = ImageDecoder.readIntegerCompressed8(inputStream);
+        height = ImageDecoder.readIntegerCompressed8(inputStream);
+    }
+
+    public void save(final BitOutputStream outputStream) throws IOException {
+        outputStream.storeBits(version, 16);
+        ImageEncoder.storeIntegerCompressed8(outputStream, width);
+        ImageEncoder.storeIntegerCompressed8(outputStream, height);
+    }
 
 }