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

Unified Diff: pkg/barback/lib/src/pool.dart

Issue 92883002: Fix an incorrect method invocation in barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/lib/src/pool.dart
diff --git a/pkg/barback/lib/src/pool.dart b/pkg/barback/lib/src/pool.dart
index 23b878f0c548c0270346fcc2a8aca0a96adb0b2f..7f89c12821ec36012b94f54d0e16e167c8a85d50 100644
--- a/pkg/barback/lib/src/pool.dart
+++ b/pkg/barback/lib/src/pool.dart
@@ -106,7 +106,7 @@ class Pool {
/// emit exceptions.
void _onTimeout() {
for (var completer in _requestedResources) {
- completer.completeException("Pool deadlock: all resources have been "
+ completer.completeError("Pool deadlock: all resources have been "
"allocated for too long.", new Trace.current().vmTrace);
}
_requestedResources.clear();
« 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