Skip to content

Commit

Permalink
fix(reference): protected method
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm authored and alimd committed Dec 26, 2023
1 parent 86b75e7 commit ff8ae62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/store-reference/src/collection-reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export class CollectionReference<TItem extends Record<string, unknown> = Record<
rev: 1,
updated: now,
created: now,
lastAutoId: 0,
type: StoreFileType.Collection,
ver: CollectionReference.version,
fv: CollectionReference.fileFormatVersion,
Expand Down Expand Up @@ -388,7 +389,7 @@ export class CollectionReference<TItem extends Record<string, unknown> = Record<
}
}

getFullContext_(): Readonly<CollectionContext<TItem>> {
protected getFullContext_(): Readonly<CollectionContext<TItem>> {
this.logger_.logMethod?.('getFullContext_');
return this.context__;
}
Expand Down

0 comments on commit ff8ae62

Please sign in to comment.