Skip to content

Commit

Permalink
Move helper methods above private methods
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherd-l committed Sep 20, 2024
1 parent cd36918 commit 87f2f5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/core/CoreModuleDirector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,12 +362,6 @@ export class CoreModuleDirector {
);
}

/* P R I V A T E */

private getModelStores(): ModelStoresMap<SupportedModel> {
return this.core.modelRepo?.modelStores as ModelStoresMap<SupportedModel>;
}

/**
* Helper that checks if a given SubscriptionType is a push subscription.
*/
Expand Down Expand Up @@ -397,4 +391,10 @@ export class CoreModuleDirector {
return undefined;
}
}

/* P R I V A T E */

private getModelStores(): ModelStoresMap<SupportedModel> {
return this.core.modelRepo?.modelStores as ModelStoresMap<SupportedModel>;
}
}

0 comments on commit 87f2f5d

Please sign in to comment.