revert async changes (#22649)

This commit is contained in:
Aasim Khan
2023-04-06 13:33:29 -07:00
committed by GitHub
parent 094562ea9c
commit 4f341a0989
8 changed files with 107 additions and 632 deletions

View File

@@ -26,17 +26,6 @@ export class TestConnectionManagementService implements IConnectionManagementSer
onDeleteConnectionProfile = undefined!;
onLanguageFlavorChanged = undefined!;
public onConnectionProfileCreated: Event<any> = Event.None;
public onConnectionProfileEdited: Event<any> = Event.None;
public onConnectionProfileDeleted: Event<any> = Event.None;
public onConnectionProfileMoved: Event<any> = Event.None;
public onConnectionProfileConnected: Event<any> = Event.None;
public onConnectionProfileDisconnected: Event<any> = Event.None;
public onConnectionProfileGroupCreated: Event<any> = Event.None;
public onConnectionProfileGroupEdited: Event<any> = Event.None;
public onConnectionProfileGroupDeleted: Event<any> = Event.None;
public onConnectionProfileGroupMoved: Event<any> = Event.None;
public get onConnect(): Event<any> {
return Event.None;
}
@@ -101,10 +90,6 @@ export class TestConnectionManagementService implements IConnectionManagementSer
return [];
}
getConnectionGroupById(id: string): ConnectionProfileGroup | undefined {
return undefined;
}
getActiveConnections(providers?: string[]): ConnectionProfile[] {
return [];
}