Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 2945313002: Remove the unused class SingleContextManager (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/server/driver.dart
diff --git a/pkg/analysis_server/lib/src/server/driver.dart b/pkg/analysis_server/lib/src/server/driver.dart
index 30215da4657b28f4546edd730966b80b0368466c..87d4792a6459b1f5e5c631f4ffd8a629948697f4 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -307,14 +307,6 @@ class Driver implements ServerStarter {
ResolverProvider packageResolverProvider;
/**
- * If this flag is `true`, then single analysis context should be used for
- * analysis of multiple analysis roots, special files that could otherwise
- * cause creating additional contexts, such as `pubspec.yaml`, or `.packages`,
- * or analysis options are ignored.
- */
- bool useSingleContextManager = false;
-
- /**
* The plugins that are defined outside the analysis_server package.
*/
List<Plugin> _userDefinedPlugins = <Plugin>[];
@@ -453,8 +445,7 @@ class Driver implements ServerStarter {
diagnosticServer,
serverPlugin,
fileResolverProvider,
- packageResolverProvider,
- useSingleContextManager);
+ packageResolverProvider);
httpServer = new HttpAnalysisServer(socketServer);
stdioServer = new StdioAnalysisServer(socketServer);
socketServer.userDefinedPlugins = _userDefinedPlugins;
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/lib/src/single_context_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698