Skip to content

Commit

Permalink
Fix analysis issues (flutter#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 authored May 2, 2018
1 parent 8b6ba73 commit 0e339e4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion test/default_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ void main() {
/// A wrapper for [neverCalled] that works around sdk#33015.
void Function() get neverCalledVoid {
var function = neverCalled;
return () => neverCalled();
return () => function();
}
2 changes: 0 additions & 2 deletions test/stopwatch_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import 'dart:async';

import 'package:clock/clock.dart';

import 'package:test/test.dart';
Expand Down

0 comments on commit 0e339e4

Please sign in to comment.