Skip to content

Commit

Permalink
Remove unused _themeShadower from themeimporter.ts (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
oshi97 committed Sep 3, 2021
1 parent c4c544c commit 90f55f0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/commands/import/themeimporter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import path from 'path';
import simpleGit from 'simple-git/promise';
const git = simpleGit();
import { ThemeShadower } from '../override/themeshadower';
import ThemeManager from '../../utils/thememanager';
import { getRepoNameFromURL } from '../../utils/gitutils';
import SystemError from '../../errors/systemerror';
Expand Down Expand Up @@ -38,12 +37,10 @@ type ExecArgs = ArgsForExecute<Args>;
*/
const ThemeImporter : Command<Args, ExecArgs> = class {
config: JamboConfig;
private _themeShadower: ThemeShadower;
private _postImportHook: 'postimport';

constructor(jamboConfig) {
this.config = jamboConfig;
this._themeShadower = new ThemeShadower(jamboConfig);
this._postImportHook = 'postimport';
}

Expand Down

0 comments on commit 90f55f0

Please sign in to comment.