rename variable to avoid shadowing another (#712)

This fixes a small lint issue in some widget bundling code.
pull/713/head
Paul Fitzpatrick 8 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;
}
public testOverrideUrl(url: string) {
super.testOverrideUrl(url);
public testOverrideUrl(overrideUrl: string) {
super.testOverrideUrl(overrideUrl);
this._cache.reset();
}
}

Loading…
Cancel
Save