formatting
[iotcloud.git] / src / java / iotcloud / TableStatus.java
index 05e589641ce93d85d0795fa8ff04761a1792226e..83aa9ccfa7e165095af34183042b9e3c807a9f8c 100644 (file)
@@ -3,12 +3,12 @@ import java.nio.ByteBuffer;
 
 class TableStatus extends Entry {
        int maxslots;
-       
+
        TableStatus(Slot slot, int _maxslots) {
                super(slot);
                maxslots=_maxslots;
        }
-       
+
        static Entry decode(Slot slot, ByteBuffer bb) {
                int maxslots=bb.getInt();
                return new TableStatus(slot, maxslots);
@@ -22,7 +22,7 @@ class TableStatus extends Entry {
        int getSize() {
                return Integer.BYTES+Byte.BYTES;
        }
-       
+
        byte getType() {
                return Entry.TypeTableStatus;
        }