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

Unified Diff: sdk/lib/io/data_transformer.dart

Issue 1400453004: Fix bug in previous commit (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/data_transformer.dart
diff --git a/sdk/lib/io/data_transformer.dart b/sdk/lib/io/data_transformer.dart
index 42289244cba978ee7dda9d778f3de0191d6150cf..144234db92017a8573beb36761ca3fb7b0b10c6c 100644
--- a/sdk/lib/io/data_transformer.dart
+++ b/sdk/lib/io/data_transformer.dart
@@ -483,7 +483,7 @@ class _FilterSink extends ByteConversionSink {
void addSlice(List<int> data, int start, int end, bool isLast) {
if (_closed) return;
- if (end == null) throw ArgumentError.notNull("end");
+ if (end == null) throw new ArgumentError.notNull("end");
RangeError.checkValidRange(start, end, data.length);
try {
_empty = false;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698