Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions example/runner_pool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

library isolate.example.runner_pool;

import 'dart:async' show Future;

import 'package:isolate/load_balancer.dart';
import 'package:isolate/isolate_runner.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/load_balancer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// A load-balancing runner pool.
library isolate.load_balancer;

import 'dart:async' show Future, FutureOr;
import 'dart:async' show FutureOr;

import 'runner.dart';
import 'src/errors.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/registry.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// An isolate-compatible object registry and lookup service.
library isolate.registry;

import 'dart:async' show Future, Completer, TimeoutException;
import 'dart:async' show Completer, TimeoutException;
import 'dart:collection' show HashMap, HashSet;
import 'dart:isolate' show RawReceivePort, SendPort, Capability;

Expand Down
2 changes: 1 addition & 1 deletion lib/runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/// or even isolate.
library isolate.runner;

import 'dart:async' show Future, FutureOr;
import 'dart:async' show FutureOr;

/// Calls a function with an argument.
///
Expand Down
1 change: 0 additions & 1 deletion test/isolaterunner_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

library isolate.test.isolaterunner_test;

import 'dart:async' show Future;
import 'dart:isolate' show Capability;

import 'package:isolate/isolate_runner.dart';
Expand Down