Moving Java drivers; Creating iotruntime socket connections for C++; First version...
[iot2.git] / benchmarks / drivers / LifxLightBulb / DeviceStateVersion.java
diff --git a/benchmarks/drivers/LifxLightBulb/DeviceStateVersion.java b/benchmarks/drivers/LifxLightBulb/DeviceStateVersion.java
deleted file mode 100644 (file)
index f2f0200..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-package iotcode.LifxLightBulb;
-
-public class DeviceStateVersion {
-       final long vender;
-       final long product;
-       final long version;
-
-       public DeviceStateVersion(long _vender, long _product, long _version) {
-               vender = _vender;
-               product = _product;
-               version = _version;
-       }
-
-       public long getVender() {
-               return vender;
-       }
-
-       public long getProduct() {
-               return product;
-       }
-
-       public long getVersion() {
-               return version;
-       }
-}