removed unused code

This commit is contained in:
gorhill 2015-09-14 10:48:23 -04:00
parent eabaa71446
commit 6cc07a4027
1 changed files with 0 additions and 34 deletions

View File

@ -1481,37 +1481,3 @@ vAPI.messaging.listen('scriptlets', onMessage);
/******************************************************************************/
/******************************************************************************/
// devtools
(function() {
'use strict';
/******************************************************************************/
var onMessage = function(request, sender, callback) {
// Async
switch ( request.what ) {
default:
break;
}
// Sync
var response;
switch ( request.what ) {
default:
return vAPI.messaging.UNHANDLED;
}
callback(response);
};
vAPI.messaging.listen('devtools', onMessage);
/******************************************************************************/
})();
/******************************************************************************/