Revert "Adds "Get Connection String" command (#2108)" (#2116)

This reverts commit c4df7667ff.
This commit is contained in:
Karl Burtram
2018-08-01 19:00:24 -04:00
committed by GitHub
parent c4df7667ff
commit c6d1fa2b7d
16 changed files with 9 additions and 130 deletions

View File

@@ -253,8 +253,4 @@ export class TestConnectionManagementService implements IConnectionManagementSer
getActiveConnectionCredentials(profileId: string): { [name: string]: string } {
return undefined;
}
getConnectionString(profile: IConnectionProfile): Thenable<string> {
return undefined;
}
}

View File

@@ -28,10 +28,6 @@ export class ConnectionProviderStub implements sqlops.ConnectionProvider {
return undefined;
}
getConnectionString(connectionUri: string): Thenable<string> {
return undefined;
}
rebuildIntelliSenseCache(connectionUri: string): Thenable<void> {
return undefined;
}