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

Unified Diff: tool/input_sdk/lib/convert/byte_conversion.dart

Issue 1965563003: Update dart:convert and dart:core Uri. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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
Index: tool/input_sdk/lib/convert/byte_conversion.dart
diff --git a/tool/input_sdk/lib/convert/byte_conversion.dart b/tool/input_sdk/lib/convert/byte_conversion.dart
index d27b40fcf89bba5b2cb4ee34e39bfe4dc0f045c4..4c1ede46e91026579325360826b5bcbf31d5b2b7 100644
--- a/tool/input_sdk/lib/convert/byte_conversion.dart
+++ b/tool/input_sdk/lib/convert/byte_conversion.dart
@@ -64,8 +64,8 @@ class _ByteAdapterSink extends ByteConversionSinkBase {
_ByteAdapterSink(this._sink);
- void add(List<int> chunk) => _sink.add(chunk);
- void close() => _sink.close();
+ void add(List<int> chunk) { _sink.add(chunk); }
+ void close() { _sink.close(); }
}
/**

Powered by Google App Engine
This is Rietveld 408576698