Skip to content

Commit 64816cf

Browse files
committed
Remove redundant 'activated' property from solution load state factories
1 parent 7a46635 commit 64816cf

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/solutions/solution-manager.factories.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,13 @@ export const idleSolutionLoadStateFactory = makeFactory<SolutionLoadState>({
2929
activated: () => false,
3030
loaded: () => undefined,
3131
converted: () => undefined,
32-
activated: () => undefined,
3332
});
3433

3534
export const activeSolutionLoadStateFactory = makeFactory<SolutionLoadState>({
3635
solutionPath: () => path.join(faker.system.filePath(), `${faker.word.noun()}.csolution.yml`),
3736
activated: () => true,
3837
loaded: () => undefined,
3938
converted: () => undefined,
40-
activated: () => true,
4139
});
4240

4341
const fireOnDidChangeLoadState = (emitter: vscode.EventEmitter<SolutionLoadStateChangeEvent>) => {

0 commit comments

Comments
 (0)