Adding premature C++ side; supporting only primitive types (including string) for now
[iot2.git] / iotjava / iotrmi / Java / IoTRMIObject.java
index c8fefa41d8dbb080dae3dfce93efe9673da119d5..bb093a999c52f0b88c7f4f42816f55262a016a75 100644 (file)
@@ -76,10 +76,10 @@ public class IoTRMIObject {
         */
        public String getSignature() {
 
-               // Get method ID
+               // Get method Id bytes
                byte[] methodIdBytes = new byte[IoTRMIUtil.METHOD_ID_LEN];
                System.arraycopy(methodBytes, 0, methodIdBytes, 0, IoTRMIUtil.METHOD_ID_LEN);
-               // Get Method object to handle method
+               // Get method Id
                int methodId = IoTRMIUtil.byteArrayToInt(methodIdBytes);
                // Get method signature from the Map
                return mapHash2Sign.get(methodId);