rename variable to avoid shadowing another (#712)

This fixes a small lint issue in some widget bundling code.
pull/713/head
Paul Fitzpatrick 11 months ago committed by GitHub
parent cc6265eebf
commit 6059bdcf66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -209,8 +209,8 @@ class CachedWidgetRepository extends WidgetRepositoryImpl {
return list; return list;
} }
public testOverrideUrl(url: string) { public testOverrideUrl(overrideUrl: string) {
super.testOverrideUrl(url); super.testOverrideUrl(overrideUrl);
this._cache.reset(); this._cache.reset();
} }
} }

Loading…
Cancel
Save