refactor: Convert protected methods to private (#2358)

This commit is contained in:
Dermot Duffy
2026-02-19 20:47:59 -08:00
committed by GitHub
parent 529500ed94
commit 0a67df9a25
122 changed files with 815 additions and 829 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ import {
// non-trivial in size (after which they are cached forever).
export class EntityRegistryManagerLive implements EntityRegistryManager {
protected _cache: EntityCache;
protected _fetchedEntityList = false;
private _cache: EntityCache;
private _fetchedEntityList = false;
constructor(cache: EntityCache) {
this._cache = cache;