Fixed compiler for Java code generation (not heavily tested yet, but fixes include...
[iot2.git] / iotjava / iotrmi / C++ / IoTRMICall.hpp
index 99dd56d805027b0467ecc42100b31930f98c7d76..a92f3e3732da99b090073d334cf5d96d47abd3f8 100644 (file)
@@ -37,7 +37,6 @@ class IoTRMICall {
                void**  getReturnObjects(char* retBytes, string retCls[], int numRet, void* retObj[]);
 
        private:
-               map<string,int>         mapSign2MethodId;
                IoTRMIUtil                      *rmiUtil;
                IoTSocketClient         *rmiClient;
 
@@ -91,8 +90,6 @@ void* IoTRMICall::remoteCall(int objectId, int methodId, string retType, string
        methodToBytes(objectId, methodId, paramCls, paramObj, method, numParam);
        // Send bytes
        fflush(NULL);
-       cout << "Length: " << len << endl;
-       IoTRMIUtil::printBytes(method, len, false);
        rmiClient->sendBytes(method, len);
        fflush(NULL);
        // Receive return value and return it to caller