From c4628f29be7595c88d92c139581aea2337fb2212 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Tue, 30 Mar 2021 10:43:07 +0200 Subject: [PATCH] refactor(common): remove `XhrFactory` re-export from `@angular/common/http` (#41370) This was only done temporary to allow migration in Google3. The removal breaking change message has already been included in #41313 PR Close #41370 --- packages/common/http/public_api.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/common/http/public_api.ts b/packages/common/http/public_api.ts index 9a19a913c9..12199e8bc4 100644 --- a/packages/common/http/public_api.ts +++ b/packages/common/http/public_api.ts @@ -6,10 +6,6 @@ * found in the LICENSE file at https://angular.io/license */ -// TODO(alan-agius4): remove this export once migration has been done in Google3. (Should happen -// prior to V12 RC). -export {XhrFactory} from '@angular/common'; - export {HttpBackend, HttpHandler} from './src/backend'; export {HttpClient} from './src/client'; export {HttpContext, HttpContextToken} from './src/context';