Changes and additional files for RMI profiling
[iot2.git] / iotjava / iotrmi / Java / basics / TestClass.java
index f9666fe0f8a0668f658c0472a7ef6af139aa7f59..6e9aea4cb56f3473417bfdb9b08cf56eed95bbef 100644 (file)
@@ -323,17 +323,17 @@ public class TestClass implements TestClassInterface {
        // Struct
        public Struct handleStruct(Struct str) {
 
-               System.out.println("Name: " + str.name);
-               System.out.println("Value: " + str.value);
-               System.out.println("Year: " + str.year);
+               //System.out.println("Name: " + str.name);
+               //System.out.println("Value: " + str.value);
+               //System.out.println("Year: " + str.year);
 
 
-               Struct test = new Struct();
-               test.name = "Anonymous";
-               test.value = 1.33f;
-               test.year = 2016;
+               //Struct test = new Struct();
+               //test.name = "Anonymous";
+               //test.value = 1.33f;
+               //test.year = 2016;
 
-               str = test;
+               //str = test;
 
                return str;
        }