Skip to content
Snippets Groups Projects
Unverified Commit 7af4d63e authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[style] cleanup

- remove unused debug
- uncomment notification function, leftover from debug
- comment about go-land mutexes
parent 69f1304f
No related branches found
No related tags found
No related merge requests found
......@@ -181,14 +181,12 @@ ApplicationWindow {
// Helper to show notification messages
function showNotification(msg) {
console.log("Going to show notification message: ", msg);
/*
if (supportsMessages) {
let appname = ctx ? ctx.appName: "VPN";
showMessage(appname, msg, null, 15000);
} else {
console.log("System doesn't support systray notifications");
}
*/
}
menu: Menu {
......
......@@ -5,7 +5,6 @@ import (
"encoding/json"
"log"
"sync"
"fmt" // DEBUG
"0xacab.org/leap/bitmask-vpn/pkg/bitmask"
"0xacab.org/leap/bitmask-vpn/pkg/config"
......@@ -19,13 +18,14 @@ const (
failedStr = "failed"
)
var statusMutex sync.Mutex
var updateMutex sync.Mutex
// ctx will be our glorious global object.
// if we ever switch again to a provider-agnostic app, we should keep a map here.
var ctx *connectionCtx
// these mutexes protect setting and updating the global status in this go backend
var statusMutex sync.Mutex
var updateMutex sync.Mutex
// The connectionCtx keeps the global state that is passed around to C-land. It
// also serves as the primary way of passing requests from the frontend to the
// Go-core, by letting the UI write some of these variables and processing
......@@ -57,7 +57,6 @@ func (c connectionCtx) toJson() ([]byte, error) {
log.Println(err)
return nil, err
}
fmt.Println(">>> ctx toJson done")
return b, nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment