public => private

This commit is contained in:
Benjamin Pasero 2016-11-09 16:14:48 +01:00
parent 96f7793a7c
commit 92f46f7fe7

View file

@ -118,7 +118,6 @@ export interface IWindowsMainService {
removeFromRecentPathsList(path: string[]);
clearRecentPathsList(): void;
toggleMenuBar(windowId: number): void;
updateWindowsJumpList(): void;
}
export class WindowsManager implements IWindowsMainService, IWindowEventService {
@ -1166,7 +1165,7 @@ export class WindowsManager implements IWindowsMainService, IWindowEventService
}
}
public updateWindowsJumpList(): void {
private updateWindowsJumpList(): void {
if (!platform.isWindows) {
return; // only on windows
}