Skip to content

Commit a2e1a7f

Browse files
authored
Fix merge
1 parent bd4a797 commit a2e1a7f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/shared/options.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ export interface LanguageServerOptions {
7474
readonly extensionsPaths: string[] | null;
7575
readonly preferCSharpExtension: boolean;
7676
readonly startTimeout: number;
77-
readonly preferCSharpExtension: boolean;
7877
readonly crashDumpPath: string | undefined;
7978
}
8079

@@ -387,9 +386,6 @@ class LanguageServerOptionsImpl implements LanguageServerOptions {
387386
public get startTimeout() {
388387
return readOption<number>('dotnet.server.startTimeout', 30000);
389388
}
390-
public get preferCSharpExtension() {
391-
return readOption<boolean>('dotnet.preferCSharpExtension', false);
392-
}
393389
public get crashDumpPath() {
394390
return readOption<string | undefined>('dotnet.server.crashDumpPath', undefined);
395391
}

0 commit comments

Comments
 (0)