From 0e3d0fbec6a77d3b122e4eab058913fe8934e348 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 14 Apr 2015 13:22:41 +0100 Subject: [PATCH] docs(change_detection): don't annotate exports that are already in public modules Since `DynamicChangeDetection` and `JitChangeDetection` classes are alreadt in the public module, they do not need to be annotated with a `@exportAs` tag Closes #1353 --- modules/angular2/change_detection.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/angular2/change_detection.js b/modules/angular2/change_detection.js index c4a89eb72b..1a0d0e120e 100644 --- a/modules/angular2/change_detection.js +++ b/modules/angular2/change_detection.js @@ -51,9 +51,6 @@ export var defaultPipes = { }; -/** - * @exportedAs angular2/change_detection - */ export class DynamicChangeDetection extends ChangeDetection { registry:PipeRegistry; @@ -67,9 +64,6 @@ export class DynamicChangeDetection extends ChangeDetection { } } -/** - * @exportedAs angular2/change_detection - */ export class JitChangeDetection extends ChangeDetection { registry:PipeRegistry;