Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: samples/ui_lib/observable/observable.dart

Issue 11358060: Change NotImplementedException to UnimplementedError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/tests/vm/dart/isolate_mirror_remote_test.dart ('k') | samples/ui_lib/touch/TouchUtil.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/ui_lib/observable/observable.dart
diff --git a/samples/ui_lib/observable/observable.dart b/samples/ui_lib/observable/observable.dart
index 7cf33a09474677cf8a16a9a3decd480a8dcaf0d3..48b42f4fc4737610b187885ea3a83bdba11de928 100644
--- a/samples/ui_lib/observable/observable.dart
+++ b/samples/ui_lib/observable/observable.dart
@@ -243,19 +243,19 @@ class ObservableList<T>
}
void setRange(int start, int length, List from, [int startFrom = 0]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void removeRange(int start, int length) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void insertRange(int start, int length, [initialValue = null]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
List getRange(int start, int length) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
// Iterable<T>:
« no previous file with comments | « runtime/tests/vm/dart/isolate_mirror_remote_test.dart ('k') | samples/ui_lib/touch/TouchUtil.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698