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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart

Issue 197473015: Fix an analyzer error in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/_internal/pub/lib/src/barback/web_socket_api.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart b/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart
index 7c9b30200a56beb9f0545539053877c0945bddb0..ff59dec41da26a232cc917dcd658fc153a8e0ca8 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/web_socket_api.dart
@@ -272,10 +272,8 @@ class WebSocketApi {
var urls = _environment.getUrlsForAssetPath(assetPath);
if (urls.isEmpty) {
- var name = '"$assetPath"';
- if (command['package'] != null) name += ' in package "$package"';
throw new _WebSocketException(_ErrorCode.NOT_SERVED,
- 'Asset path $name is not currently being served.');
+ 'Asset path "$assetPath" is not currently being served.');
}
var result = {"urls": urls.map((url) => url.toString()).toList()};
« 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