Skip to content

Commit

Permalink
fix(example): tidy up double dart io import
Browse files Browse the repository at this point in the history
  • Loading branch information
brad-jones committed Mar 18, 2020
1 parent 515c7f0 commit 924d387
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions example/main.dart
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import 'dart:io';
import 'dart:async';
import 'dart:convert';
import 'dart:io' as io;
import 'dart:io';
import 'package:dexeca/dexeca.dart';

/// Just a helper so that this example will execute as expected everywhere.
List<String> _pingArgs(String target) {
if (io.Platform.isWindows) {
if (Platform.isWindows) {
return [target];
} else {
return ['-c', '4', target];
Expand Down

0 comments on commit 924d387

Please sign in to comment.