| Index: pkg/analyzer/lib/src/generated/sdk_io.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/sdk_io.dart b/pkg/analyzer/lib/src/generated/sdk_io.dart
|
| index ff105f09261d54cd9cc1c4ee25b6d2a360627086..c962d2087944b4bab142f4b6a918e6e95fad8d9a 100644
|
| --- a/pkg/analyzer/lib/src/generated/sdk_io.dart
|
| +++ b/pkg/analyzer/lib/src/generated/sdk_io.dart
|
| @@ -67,16 +67,6 @@ class DirectoryBasedDartSdk implements DartSdk {
|
| static String _DART2JS_EXECUTABLE_NAME_WIN = "dart2js.bat";
|
|
|
| /**
|
| - * The name of the dart formatter executable on non-windows operating systems.
|
| - */
|
| - static String _DARTFMT_EXECUTABLE_NAME = "dartfmt";
|
| -
|
| - /**
|
| - * The name of the dart formatter executable on windows operating systems.
|
| - */
|
| - static String _DARTFMT_EXECUTABLE_NAME_WIN = "dartfmt.bat";
|
| -
|
| - /**
|
| * The name of the file containing the Dartium executable on Linux.
|
| */
|
| static String _DARTIUM_EXECUTABLE_NAME_LINUX = "chrome";
|
| @@ -276,21 +266,6 @@ class DirectoryBasedDartSdk implements DartSdk {
|
| }
|
|
|
| /**
|
| - * Return the file containing the dart formatter executable, or `null` if it
|
| - * does not exist.
|
| - */
|
| - JavaFile get dartFmtExecutable {
|
| - if (_dartFmtExecutable == null) {
|
| - _dartFmtExecutable = _verifyExecutable(new JavaFile.relative(
|
| - new JavaFile.relative(_sdkDirectory, _BIN_DIRECTORY_NAME),
|
| - OSUtilities.isWindows()
|
| - ? _DARTFMT_EXECUTABLE_NAME_WIN
|
| - : _DARTFMT_EXECUTABLE_NAME));
|
| - }
|
| - return _dartFmtExecutable;
|
| - }
|
| -
|
| - /**
|
| * Return the name of the file containing the Dartium executable.
|
| */
|
| String get dartiumBinaryName {
|
|
|