5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 03:52:41 +08:00

Remove debug statements

This commit is contained in:
Lea Anthony 2019-01-13 17:57:21 +11:00
parent 9004c3955e
commit 1ef8ed73ab
2 changed files with 4 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -157,7 +157,6 @@
return new Promise(function (resolve, reject) { return new Promise(function (resolve, reject) {
// Create a unique callbackID // Create a unique callbackID
debugger;
var callbackID; var callbackID;
do { do {
callbackID = bindingName + "-" + randomFunc(); callbackID = bindingName + "-" + randomFunc();
@ -203,7 +202,6 @@
function callback(incomingMessage) { function callback(incomingMessage) {
// Parse the message // Parse the message
var message var message
debugger;
try { try {
message = JSON.parse(incomingMessage) message = JSON.parse(incomingMessage)
} catch (e) { } catch (e) {