File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
packages/database/src/core Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { assert , EmulatorMockTokenOptions } from '@firebase/util' ;
18
+ import {
19
+ assert ,
20
+ //EmulatorMockTokenOptions //DEDB replace
21
+ } from '@firebase/util' ;
19
22
20
23
import { LONG_POLLING , WEBSOCKET } from '../realtime/Constants' ;
21
24
@@ -28,9 +31,12 @@ import { each } from './util/util';
28
31
export class RepoInfo {
29
32
private _host : string ;
30
33
private _domain : string ;
34
+ /*
35
+ //DEDB replace
31
36
private _emulatorOptions: {
32
37
mockUserToken?: EmulatorMockTokenOptions | string;
33
38
};
39
+ */
34
40
internalHost : string ;
35
41
36
42
/**
@@ -53,7 +59,7 @@ export class RepoInfo {
53
59
) {
54
60
this . _host = host . toLowerCase ( ) ;
55
61
this . _domain = this . _host . substr ( this . _host . indexOf ( '.' ) + 1 ) ;
56
- this . _emulatorOptions = { } ;
62
+ // this._emulatorOptions = {}; //DEDB replace
57
63
this . internalHost =
58
64
( PersistentStorage . get ( 'host:' + host ) as string ) || this . _host ;
59
65
}
@@ -82,11 +88,14 @@ export class RepoInfo {
82
88
}
83
89
}
84
90
91
+ /*
92
+ //DEDB replace
85
93
get emulatorOptions(): {
86
94
mockUserToken?: EmulatorMockTokenOptions | string;
87
95
} {
88
96
return this._emulatorOptions;
89
97
}
98
+ */
90
99
91
100
toString ( ) : string {
92
101
let str = this . toURLString ( ) ;
You can’t perform that action at this time.
0 commit comments