1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

removed unused code

This commit is contained in:
gorhill 2015-09-14 10:48:23 -04:00
parent eabaa71446
commit 6cc07a4027

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);
/******************************************************************************/
})();
/******************************************************************************/