| Index: pkg/analysis_server/bin/server.dart
|
| diff --git a/pkg/analysis_server/bin/server.dart b/pkg/analysis_server/bin/server.dart
|
| index 84b770210ccd5e71efa2be786fe71b4b0b24097e..f0d075f6f8d4a3540de263d0eeb752edb74d106f 100644
|
| --- a/pkg/analysis_server/bin/server.dart
|
| +++ b/pkg/analysis_server/bin/server.dart
|
| @@ -2,12 +2,12 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -import 'package:analysis_server/driver.dart';
|
| +import 'package:analysis_server/starter.dart';
|
|
|
| /**
|
| - * Create and run an HTTP-based analysis server.
|
| + * Create and run an analysis server.
|
| */
|
| void main(List<String> args) {
|
| - Driver driver = new Driver();
|
| - driver.start(args);
|
| + ServerStarter starter = new ServerStarter();
|
| + starter.start(args);
|
| }
|
|
|