| Index: pkg/analysis_server/test/stress/utilities/server.dart
|
| diff --git a/pkg/analysis_server/test/stress/utilities/server.dart b/pkg/analysis_server/test/stress/utilities/server.dart
|
| index 08beaa04e4adae56cc17a30e2cd402f1b03cfc73..a8fb15192256bef97407dc88518907a51a67eb3f 100644
|
| --- a/pkg/analysis_server/test/stress/utilities/server.dart
|
| +++ b/pkg/analysis_server/test/stress/utilities/server.dart
|
| @@ -608,9 +608,6 @@ class Server {
|
| *
|
| * If [checked] is `true`, the server's VM will be running in checked mode.
|
| *
|
| - * If [debugServer] is `true`, the server will be started with "--debug",
|
| - * allowing a debugger to be attached.
|
| - *
|
| * If [diagnosticPort] is not `null`, the server will serve status pages to
|
| * the specified port.
|
| *
|
| @@ -625,7 +622,6 @@ class Server {
|
| */
|
| Future<Null> start(
|
| {bool checked: true,
|
| - bool debugServer: false,
|
| int diagnosticPort,
|
| bool enableNewAnalysisDriver: false,
|
| bool profileServer: false,
|
| @@ -644,9 +640,6 @@ class Server {
|
| //
|
| // Add VM arguments.
|
| //
|
| - if (debugServer) {
|
| - arguments.add('--debug');
|
| - }
|
| if (profileServer) {
|
| if (servicesPort == null) {
|
| arguments.add('--observe');
|
|
|