Skip to content

Commit

Permalink
Dead code removal
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed May 7, 2024
1 parent 726d60f commit d1ab060
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion RavelCAPI
Submodule RavelCAPI updated 0 files
1 change: 0 additions & 1 deletion gui-js/apps/minsky-electron/src/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import { RecentFilesManager } from './managers/RecentFilesManager';
import { StoreManager } from './managers/StoreManager';
import { WindowManager } from './managers/WindowManager';
import { backend, backendSync, initialWorkingDirectory, loadResources, sanityCheck } from './backend-init';
import { renameSync } from 'fs';

export default class App {
// Keep a global reference of the window object, if you don't, the window will
Expand Down
2 changes: 0 additions & 2 deletions gui-js/apps/minsky-electron/src/app/managers/StoreManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ interface MinskyStore {
backgroundColor: string;
preferences: MinskyPreferences;
ravelPlugin: string; // used for post installation installation of Ravel
ravelDll: string; // on windows, temporarily store a copy of the Ravel plugin, and move it into position on next startup
}

class StoreManager {
Expand All @@ -35,7 +34,6 @@ class StoreManager {
numBackups: 1,
},
ravelPlugin: '',
ravelDll: '',
},
});
}
Expand Down
1 change: 0 additions & 1 deletion gui-js/libs/shared/src/lib/backend/minsky.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1459,7 +1459,6 @@ export class Minsky extends CppClass {
async tmax(...args: number[]): Promise<number> {return this.$callMethod('tmax',...args);}
async triggerCheckMemAllocationCallback(): Promise<boolean> {return this.$callMethod('triggerCheckMemAllocationCallback');}
async undo(a1: number): Promise<number> {return this.$callMethod('undo',a1);}
async unloadRavel(): Promise<void> {return this.$callMethod('unloadRavel');}
async variableTypes(): Promise<string[]> {return this.$callMethod('variableTypes');}
}

Expand Down

0 comments on commit d1ab060

Please sign in to comment.