Index: lib/src/barback/cycle_exception.dart |
diff --git a/lib/src/barback/cycle_exception.dart b/lib/src/barback/cycle_exception.dart |
index 45f4362c7347ed93727ec7697072eafe5a2cba4a..8931ddf4d44de50b9b40def60df7ac90fc7aac6a 100644 |
--- a/lib/src/barback/cycle_exception.dart |
+++ b/lib/src/barback/cycle_exception.dart |
@@ -27,7 +27,7 @@ class CycleException implements ApplicationException { |
if (_step == null) return []; |
var exception = this; |
- var steps = []; |
+ var steps = <String>[]; |
while (exception != null) { |
steps.add(exception._step); |
exception = exception._next; |