diff options
author | bob <bcz@cs.brown.edu> | 2019-02-01 09:48:17 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-02-01 09:48:17 -0500 |
commit | 38bd04e67c13d073057321c5ba89a1e1aef02179 (patch) | |
tree | 388dcd014d786dd913c1e2810593606afdba5be7 /src/fields/DocumentReference.ts | |
parent | 4b1e7b1e71f8dbd7a54e2e2f03fcbf813288bc5c (diff) |
fixed compile errors.
Diffstat (limited to 'src/fields/DocumentReference.ts')
-rw-r--r-- | src/fields/DocumentReference.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fields/DocumentReference.ts b/src/fields/DocumentReference.ts index f8be335ef..f4f933848 100644 --- a/src/fields/DocumentReference.ts +++ b/src/fields/DocumentReference.ts @@ -1,7 +1,6 @@ import { Field, Opt } from "./Field"; import { Document } from "./Document"; import { Key } from "./Key"; -import { DocumentUpdatedArgs } from "./FieldUpdatedArgs"; export class DocumentReference extends Field { get Key(): Key { @@ -16,10 +15,6 @@ export class DocumentReference extends Field { super(); } - private DocFieldUpdated(args: DocumentUpdatedArgs): void { - // this.FieldUpdated.emit(args.fieldArgs); - } - Dereference(): Opt<Field> { return this.document.GetField(this.key); } |