Cleaning up code for runtime, installer, RMI, compiler for the Java side
[iot2.git] / iotjava / iotrmi / Java / sample / StructMain.java
diff --git a/iotjava/iotrmi/Java/sample/StructMain.java b/iotjava/iotrmi/Java/sample/StructMain.java
deleted file mode 100644 (file)
index 3f4456c..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package iotrmi.Java.sample;
-
-public class StructMain {
-
-       public static void main (String[] args) {
-
-               StructJ data = new StructJ();
-               data.name = "Rahmadi";
-               data.value = 0.123f;
-               data.year = 2016;
-
-               System.out.println("Name: " + data.name);
-               System.out.println("Value: " + data.value);
-               System.out.println("Year: " + data.year);
-       }
-}
-