From dfc26efd1288982a72f604e88c3863fefefd9ce6 Mon Sep 17 00:00:00 2001 From: Corrado Lombardi Date: Wed, 18 Nov 2020 10:51:55 +0100 Subject: [PATCH] renamed private function --- src/app/core/data/comcol-data.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/core/data/comcol-data.service.ts b/src/app/core/data/comcol-data.service.ts index 86731b9696..a06a6bac9a 100644 --- a/src/app/core/data/comcol-data.service.ts +++ b/src/app/core/data/comcol-data.service.ts @@ -123,7 +123,7 @@ export abstract class ComColDataService extends DataS } public refreshCache(dso: T) { - const parentCommunityUrl = this.parentCommunityUrl(dso as any); + const parentCommunityUrl = this.parentCommunityUrlLookup(dso as any); if (!hasValue(parentCommunityUrl)) { return; } @@ -136,7 +136,7 @@ export abstract class ComColDataService extends DataS }); } - private parentCommunityUrl(dso: Collection | Community) { + private parentCommunityUrlLookup(dso: Collection | Community) { const parentCommunity = dso._links.parentCommunity; return isNotEmpty(parentCommunity) ? parentCommunity.href : null; }