Remove Explorer.isEmulator (#256)

This commit is contained in:
Steve Faulkner
2020-10-09 11:18:50 -05:00
committed by GitHub
parent 5191ae3f3a
commit 14cdf19efb
26 changed files with 47 additions and 63 deletions
+1 -2
View File
@@ -7,8 +7,7 @@ import { NotificationsClient } from "./NotificationsClient";
export default class EmulatorExplorerFactory {
public static createExplorer(): Explorer {
const explorer: Explorer = new Explorer({
notificationsClient: new NotificationsClient(),
isEmulator: true
notificationsClient: new NotificationsClient()
});
explorer.databaseAccount({
name: "",
+1 -2
View File
@@ -4,8 +4,7 @@ import { NotificationsClient } from "./NotificationsClient";
export default class HostedExplorerFactory {
public createExplorer(): Explorer {
const explorer = new Explorer({
notificationsClient: new NotificationsClient(),
isEmulator: false
notificationsClient: new NotificationsClient()
});
return explorer;
+1 -2
View File
@@ -4,8 +4,7 @@ import { NotificationsClient } from "./NotificationsClient";
export default class PortalExplorerFactory {
public createExplorer(): Explorer {
var explorer = new Explorer({
notificationsClient: new NotificationsClient(),
isEmulator: false
notificationsClient: new NotificationsClient()
});
return explorer;