Skip to content
Snippets Groups Projects
Unverified Commit 373a4ead authored by Kevin Moore's avatar Kevin Moore Committed by GitHub
Browse files

Fix unused imports and unnecessary casts (#735)

parent 1a313749
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,6 @@ T Function<T>(
? " no arguments."
: ":\n${bullet(arguments.map(prettyPrint))}")),
zone.run(() => new Chain.current()));
return null as T;
return null;
};
}
......@@ -15,7 +15,6 @@ import '../../backend/test_platform.dart';
import '../../util/io.dart';
import '../../util/remote_exception.dart';
import '../../util/stack_trace_mapper.dart';
import '../application_exception.dart';
import '../configuration.dart';
import '../configuration/suite.dart';
import '../environment.dart';
......
......@@ -5,7 +5,6 @@
import 'dart:async';
import 'package:term_glyph/term_glyph.dart' as glyph;
import 'package:test/src/backend/state.dart';
import 'package:test/test.dart';
import '../utils.dart';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment