refactor(dart/transform): Correct Dart analyzer warnings

This commit is contained in:
Tim Blasi
2015-04-14 13:55:15 -07:00
parent f89bb8eaf3
commit ae84eb7462
2 changed files with 8 additions and 11 deletions
@@ -8,7 +8,7 @@ import 'dart:async';
/// Mocked out version of [bootstrap], defined in application.dart. Importing
/// the actual file in tests causes issues with resolution due to its
/// transitive dependencies.
Future bootstrap(Type appComponentType, [List<Binding> bindings = null,
Function givenBootstrapErrorReporter = null]) {
Future bootstrap(Type appComponentType,
[List bindings = null, Function givenBootstrapErrorReporter = null]) {
return null;
}