| Index: lib/src/util/io.dart
|
| diff --git a/lib/src/util/io.dart b/lib/src/util/io.dart
|
| index 733f1a9ecda3f62d10bda7ce6caf7bf7b75ae7db..f84796f9c3cf277b90d2ea4bdfdd30c3731ce633 100644
|
| --- a/lib/src/util/io.dart
|
| +++ b/lib/src/util/io.dart
|
| @@ -33,13 +33,6 @@ bool get canUseSpecialChars =>
|
| Platform.operatingSystem != 'windows' &&
|
| Platform.environment["_UNITTEST_USE_COLOR"] != "false";
|
|
|
| -/// Gets a "special" string (ANSI escape or Unicode).
|
| -///
|
| -/// On Windows or when not printing to a terminal, returns something else since
|
| -/// those aren't supported.
|
| -String getSpecial(String special, [String onWindows = '']) =>
|
| - canUseSpecialChars ? special : onWindows;
|
| -
|
| /// Creates a temporary directory and passes its path to [fn].
|
| ///
|
| /// Once the [Future] returned by [fn] completes, the temporary directory and
|
|
|