Skip to content

Commit

Permalink
Fixes after merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
AKalinich-Luxoft committed Aug 19, 2019
1 parent 610c7e3 commit cf36a64
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions ffw/BasicCommunicationRPC.js
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ FFW.BasicCommunication = FFW.RPCObserver
'property': data.property
}
};
this.client.send(JSONMessage);
this.sendMessage(JSONMessage);
},
/**
* Send request if application was activated
Expand Down Expand Up @@ -777,25 +777,6 @@ FFW.BasicCommunication = FFW.RPCObserver
}
this.sendMessage(JSONMessage);
},
/**
* Send request if application was activated
*
* @param {Number} type
*/
GetURLS: function(type) {
Em.Logger.log('FFW.SDL.GetURLS: Request from HMI!');
// send notification
var JSONMessage = {
'jsonrpc': '2.0',
'id': this.client.generateId(),
'method': 'SDL.GetURLS',
'params': {}
};
if (type) {
JSONMessage.params.service = type;
}
this.sendMessage(JSONMessage);
},
/**
* Request from HMI to find out Policy Table status
*/
Expand Down

0 comments on commit cf36a64

Please sign in to comment.