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

Unified Diff: utils/pub/package.dart

Issue 11369066: Show better error messages in network failures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up string interpolation a bit. 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 | « utils/pub/io.dart ('k') | utils/pub/source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/package.dart
diff --git a/utils/pub/package.dart b/utils/pub/package.dart
index 8d84546ec8f676209b7164ce815c5293b948ff88..b8ee759211036ee26143f952aa0dab7e395bfc68 100644
--- a/utils/pub/package.dart
+++ b/utils/pub/package.dart
@@ -137,7 +137,10 @@ class PackageId implements Comparable {
other.version == version;
}
- String toString() => "$name $version from ${source.name}";
+ String toString() {
+ if (source.isDefault) return "$name $version";
+ return "$name $version from $source";
+ }
int compareTo(Comparable other) {
if (other is! PackageId) throw new ArgumentError(other);
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698