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

Commit 302d9c6

Browse files
committed
chore(debugging): Clean up debug messages in ng-include, parser_spec
1 parent 7ee8934 commit 302d9c6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/directives/ng_include.dart

-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ class NgIncludeAttrDirective {
3333
};
3434

3535
scope.$watch(attrs[this], (value, another) {
36-
print('ng-include tpl changed to $value');
37-
3836
if (value == null || value == '') {
3937
cleanUp();
4038
return;

test/parser_spec.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,6 @@ class OverloadObject {
905905
}
906906

907907
class ScopeWithErrors {
908-
String get boo { dump("got a boo"); throw "boo to you"; }
909-
String foo() { dump("got a foo"); throw "foo to you"; }
908+
String get boo => throw "boo to you";
909+
String foo() => throw "foo to you";
910910
}

0 commit comments

Comments
 (0)