formatting
[iotcloud.git] / src / java / iotcloud / KeyValue.java
index ac1975930bb5e6853ae559c6c269a77896ea6020..51d84eb292caffd8abb3462d87a401990bb8a283 100644 (file)
@@ -4,7 +4,7 @@ import java.nio.ByteBuffer;
 class KeyValue extends Entry {
        private IoTString key;
        private IoTString value;
-       
+
        KeyValue(Slot slot, IoTString _key, IoTString _value) {
                super(slot);
                key=_key;
@@ -18,7 +18,7 @@ class KeyValue extends Entry {
        IoTString getValue() {
                return value;
        }
-       
+
        static Entry decode(Slot slot, ByteBuffer bb) {
                int keylength=bb.getInt();
                int valuelength=bb.getInt();