From a7d1ce006963b45e39ee59d48ffb0a921c118f3e Mon Sep 17 00:00:00 2001 From: Brandon Plank <52553007+BrandonPlank@users.noreply.github.com> Date: Sun, 5 Dec 2021 15:19:33 -0500 Subject: [PATCH] Update index.js --- index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/index.js b/index.js index 07e3bf6d..feb9e087 100644 --- a/index.js +++ b/index.js @@ -1,11 +1,9 @@ require('v8-compile-cache'); const {app} = require('electron'); -const {BrowserWindow} = require("electron-acrylic-window"); // Creating the Application Window and Calling all the Functions function CreateWindow() { if (app.isQuiting) { app.quit(); return; } - /** CIDER **/ const ciderwin = require("./resources/functions/cider-base") app.win = ciderwin @@ -20,7 +18,6 @@ function CreateWindow() { app.on('ready', () => { if (app.isQuiting) { app.quit(); return; } - console.log('[Cider] Application is Ready. Creating Window.') CreateWindow() });