Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

comment nit #68

Merged
merged 2 commits into from
Feb 12, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Chapter_02/web/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
library recipe_book;

import 'package:angular/angular.dart';
import 'package:perf_api/perf_api.dart';

// Temporary, please follow https://github.com/angular/angular.dart/issues/476
@MirrorsUsed(targets: const['recipe_book'], override: '*')
Expand Down Expand Up @@ -78,7 +77,6 @@ class Recipe {
class MyAppModule extends Module {
MyAppModule() {
type(RecipeBookController);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
}
}

Expand Down
2 changes: 0 additions & 2 deletions Chapter_03/web/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ library recipe_book;

import 'package:angular/angular.dart';
import 'package:di/di.dart';
import 'package:perf_api/perf_api.dart';

import 'package:angular_dart_demo/rating/rating_component.dart';
import 'package:angular_dart_demo/recipe_book.dart';
Expand All @@ -15,7 +14,6 @@ class MyAppModule extends Module {
MyAppModule() {
type(RecipeBookController);
type(RatingComponent);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
}
}

Expand Down
2 changes: 0 additions & 2 deletions Chapter_04/web/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ library recipe_book;

import 'package:angular/angular.dart';
import 'package:di/di.dart';
import 'package:perf_api/perf_api.dart';

import 'package:angular_dart_demo/recipe_book.dart';
import 'package:angular_dart_demo/rating/rating_component.dart';
Expand All @@ -19,7 +18,6 @@ class MyAppModule extends Module {
type(RecipeBookController);
type(RatingComponent);
type(Tooltip);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
}
}

Expand Down
2 changes: 0 additions & 2 deletions Chapter_05/web/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ library recipe_book;

import 'package:angular/angular.dart';
import 'package:di/di.dart';
import 'package:perf_api/perf_api.dart';

import 'package:angular_dart_demo/recipe_book.dart';
import 'package:angular_dart_demo/filter/category_filter.dart';
Expand All @@ -21,7 +20,6 @@ class MyAppModule extends Module {
type(RatingComponent);
type(Tooltip);
type(CategoryFilter);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
}
}

Expand Down
2 changes: 0 additions & 2 deletions Chapter_06/web/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import 'package:angular/angular.dart';
import 'package:angular/routing/module.dart';
import 'package:di/di.dart';
import 'package:logging/logging.dart';
import 'package:perf_api/perf_api.dart';

import 'package:angular_dart_demo/recipe_book.dart';
import 'package:angular_dart_demo/filter/category_filter.dart';
Expand All @@ -28,7 +27,6 @@ class MyAppModule extends Module {
type(RatingComponent);
type(Tooltip);
type(CategoryFilter);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
type(SearchRecipeComponent);
type(ViewRecipeComponent);
type(QueryService);
Expand Down
6 changes: 0 additions & 6 deletions Chapter_07/web/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
// Used by di codegen to identify instantiable types.
@Injectables(const [
Profiler
])
library recipe_book;

// Temporary, please follow https://github.com/angular/angular.dart/issues/476
Expand All @@ -16,7 +12,6 @@ import 'package:angular/routing/module.dart';
import 'package:di/di.dart';
import 'package:di/annotations.dart';
import 'package:logging/logging.dart';
import 'package:perf_api/perf_api.dart';

import 'package:angular_dart_demo/recipe_book.dart';
import 'package:angular_dart_demo/filter/category_filter.dart';
Expand All @@ -40,7 +35,6 @@ class MyAppModule extends Module {
type(RatingComponent);
type(Tooltip);
type(CategoryFilter);
type(Profiler, implementedBy: Profiler); // comment out to enable profiling
type(SearchRecipeComponent);
type(ViewRecipeComponent);
type(QueryService);
Expand Down