From e26c25a062e1f8cc714d68828f48b62a932be4a4 Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Thu, 2 Aug 2018 08:08:51 -0500 Subject: [PATCH] Revert "docs: refactor http module import for style guide app.module (#25001)" (#25263) This reverts commit 88da8f3d52045aa12f6b6a499da070310ae157c6. PR Close #25263 --- aio/content/examples/styleguide/src/app/app.module.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/examples/styleguide/src/app/app.module.ts b/aio/content/examples/styleguide/src/app/app.module.ts index 236a542371..1e974baf5f 100644 --- a/aio/content/examples/styleguide/src/app/app.module.ts +++ b/aio/content/examples/styleguide/src/app/app.module.ts @@ -1,7 +1,7 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; -import { HttpClientModule } from '@angular/common/http'; +import { HttpModule } from '@angular/http'; import { InMemoryWebApiModule } from 'angular-in-memory-web-api'; import { RouterModule } from '@angular/router'; @@ -44,7 +44,7 @@ import * as s0901 from '../09-01/app/app.module'; @NgModule({ imports: [ BrowserModule, - HttpClientModule, + HttpModule, InMemoryWebApiModule.forRoot(HeroData), s0101.AppModule,