From 278bb1416db9e20a2624a5f0f8c4789073006f0e Mon Sep 17 00:00:00 2001 From: Mattia Tommasone Date: Thu, 7 Mar 2024 15:35:55 +0100 Subject: [PATCH] Fix compilation errors Change-Id: I272bdf3bbf7cda9973fbda409fab91e19fda6e1f --- .../src/Lib/GoogleAdsServiceClientFactory.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Google.Ads.GoogleAds.Core/src/Lib/GoogleAdsServiceClientFactory.cs b/Google.Ads.GoogleAds.Core/src/Lib/GoogleAdsServiceClientFactory.cs index 0a090be4c..d5f1f1d2e 100644 --- a/Google.Ads.GoogleAds.Core/src/Lib/GoogleAdsServiceClientFactory.cs +++ b/Google.Ads.GoogleAds.Core/src/Lib/GoogleAdsServiceClientFactory.cs @@ -41,6 +41,9 @@ internal class GoogleAdsServiceClientFactory : AdsServiceClientFactory /// private CachedChannelFactory channelFactory = new CachedChannelFactory(); + internal GoogleAdsServiceClientFactory(): this(new List()) { + } + internal GoogleAdsServiceClientFactory(List userInterceptors) { this.userInterceptors = userInterceptors;