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

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

Issue 23702061: Fix warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years, 3 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 | sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/barback.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback.dart b/sdk/lib/_internal/pub/lib/src/barback.dart
index 2d0b6006180c62ac035aa6c2760f9983ee1becf2..803ec64fb69a049146313b9d4a05aaa3017c63fe 100644
--- a/sdk/lib/_internal/pub/lib/src/barback.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback.dart
@@ -10,9 +10,9 @@ import 'package:barback/barback.dart';
import 'barback/load_all_transformers.dart';
import 'barback/pub_package_provider.dart';
-import 'barback/rewrite_import_transformer.dart';
import 'barback/server.dart';
import 'barback/watch_sources.dart';
+import 'package_graph.dart';
import 'utils.dart';
/// An identifier for a transformer and the configuration that will be passed to
@@ -97,7 +97,7 @@ Future<BarbackServer> createServer(String host, int port, PackageGraph graph) {
/// Otherwise, it expands to lib/${path}.dart in that package.
AssetId libraryIdentifierToId(String identifier) {
if (identifier.isEmpty) {
- throw new FormatError('Invalid library identifier: "".');
+ throw new FormatException('Invalid library identifier: "".');
}
// Convert the concise asset name in the pubspec (of the form "package"
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback/load_all_transformers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698