Skip to content

Commit 28be0dd

Browse files
committed
- Removed unused variable from a previous attempt.
1 parent 8bf10c3 commit 28be0dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ElectronNET.Host/api/browserWindows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var __assign = (this && this.__assign) || function () {
1313
var electron_1 = require("electron");
1414
var path = require('path');
1515
var windows = [];
16-
var window, lastOptions, electronSocket, electronBrowserWindow;
16+
var window, lastOptions, electronSocket;
1717
module.exports = function (socket, app) {
1818
electronSocket = socket;
1919
socket.on('register-browserWindow-ready-to-show', function (id) {

ElectronNET.Host/api/browserWindows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BrowserWindow, Menu, nativeImage } from 'electron';
22
const path = require('path');
33
const windows: Electron.BrowserWindow[] = [];
4-
let window, lastOptions, electronSocket, electronBrowserWindow;
4+
let window, lastOptions, electronSocket;
55

66
export = (socket: SocketIO.Socket, app: Electron.App) => {
77
electronSocket = socket;

0 commit comments

Comments
 (0)