Remove extraneous log message and comments

This commit is contained in:
Ryan Huffman 2016-01-11 15:22:20 -08:00
parent 88f6a4bed9
commit f0142391ee
2 changed files with 0 additions and 3 deletions

View file

@ -291,7 +291,6 @@ const httpStatusPort = 60332;
function maybeShowSplash() {
var suppressSplash = userConfig.get('doNotShowSplash', false);
console.log("Suppress?", suppressSplash)
if (!suppressSplash) {
var window = new BrowserWindow({

View file

@ -6,7 +6,6 @@ function Config() {
}
Config.prototype = {
load: function(filePath) {
// open file
var rawData = null;
try {
rawData = fs.readFileSync(filePath);
@ -15,7 +14,6 @@ Config.prototype = {
}
var configData = {};
// read file and json parse
try {
if (rawData) {
configData = JSON.parse(rawData);