From e21c6877c937e52336b8887870a78666b554a1f9 Mon Sep 17 00:00:00 2001 From: Travis Walker Date: Mon, 24 Feb 2020 14:41:30 -0800 Subject: [PATCH] Removing unneeded semaphore release (#1656) --- .../Platforms/Android/AndroidBroker.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/client/Microsoft.Identity.Client/Platforms/Android/AndroidBroker.cs b/src/client/Microsoft.Identity.Client/Platforms/Android/AndroidBroker.cs index f644e649f0..be4ac92636 100644 --- a/src/client/Microsoft.Identity.Client/Platforms/Android/AndroidBroker.cs +++ b/src/client/Microsoft.Identity.Client/Platforms/Android/AndroidBroker.cs @@ -145,9 +145,6 @@ private async Task AcquireTokenInternalAsync(IDictionary brokerP catch (Exception ex) { _logger.ErrorPiiWithPrefix(ex, "Broker invocation failed."); - - - s_readyForResponse.Release(); throw; }