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

Unified Diff: utils/pub/lock_file.dart

Issue 10803042: Reverting 9767. (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
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/lock_file.dart
diff --git a/utils/pub/lock_file.dart b/utils/pub/lock_file.dart
index d4227be2df7f939663cb2fce35846ced18fe13ad..92575fa9f5bd435f756c5c56ba641814c910fe76 100644
--- a/utils/pub/lock_file.dart
+++ b/utils/pub/lock_file.dart
@@ -4,7 +4,6 @@
#library('lock_file');
-#import('dart:json');
#import('package.dart');
#import('source_registry.dart');
#import('utils.dart');
@@ -61,7 +60,7 @@ class LockFile {
throw new FormatException('Package $name is missing a description.');
}
var description = spec['description'];
- source.validateDescription(description, fromLockFile: true);
+ source.validateDescription(description);
var id = new PackageId(source, version, description);
@@ -77,22 +76,4 @@ class LockFile {
return new LockFile._(packages);
}
-
- /**
- * Returns the serialized YAML text of the lock file.
- */
- String serialize() {
- var packagesObj = <Map>{};
- packages.forEach((name, id) {
- packagesObj[name] = {
- 'version': id.version.toString(),
- 'source': id.source.name,
- 'description': id.description
- };
- });
-
- // TODO(nweiz): Serialize using the YAML library once it supports
- // serialization. For now, we use JSON, since it's a subset of YAML anyway.
- return JSON.stringify({'packages': packagesObj});
- }
}
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698