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

Unified Diff: utils/archive/reader.dart

Issue 10832116: Attach the native entry struct to the ArchiveEntry object. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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: utils/archive/reader.dart
diff --git a/utils/archive/reader.dart b/utils/archive/reader.dart
index 15ad75615a39fbf8ff78eed054af8f727fd55f9b..3a2830fecacb2828f2f96f7882a8ca35a9a1c10e 100644
--- a/utils/archive/reader.dart
+++ b/utils/archive/reader.dart
@@ -77,7 +77,7 @@ class ArchiveReader {
* returns its id.
*/
Future<int> _createArchive() {
- return call(NEW, null).chain((id) {
+ return call(NEW).chain((id) {
if (id == 0 || id == null) {
throw new ArchiveException("Archive is invalid or closed.");
}

Powered by Google App Engine
This is Rietveld 408576698