Skip to content

Commit bbb3554

Browse files
committed
Set injectable decorator
1 parent 27548b5 commit bbb3554

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/client/common/platform/fs-paths.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4+
import { injectable } from 'inversify';
45
import * as nodepath from 'path';
56
import { getSearchPathEnvVarNames } from '../utils/exec';
67
import { getOSType, OSType } from '../utils/platform';
@@ -96,6 +97,7 @@ interface IRawPaths {
9697
relative(relpath: string, rootpath: string): string;
9798
}
9899

100+
@injectable()
99101
export class FileSystemPathUtils implements IFileSystemPathUtils {
100102
constructor(
101103
// the user home directory to use (and expose)

0 commit comments

Comments
 (0)