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

Unified Diff: pkg/analysis_server/lib/src/context_manager.dart

Issue 1882473004: Remove unused field (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/context_manager.dart
diff --git a/pkg/analysis_server/lib/src/context_manager.dart b/pkg/analysis_server/lib/src/context_manager.dart
index 13f2052d00c895ccacc0c29dd5d9e649ee7f9209..3afe0f2423e2102becdcfdcd9dec03c8c55430f4 100644
--- a/pkg/analysis_server/lib/src/context_manager.dart
+++ b/pkg/analysis_server/lib/src/context_manager.dart
@@ -46,11 +46,6 @@ import 'package:yaml/yaml.dart';
*/
class ContextInfo {
/**
- * The [ContextManager] which is tracking this information.
- */
- final ContextManagerImpl contextManager;
-
- /**
* The [Folder] for which this information object is created.
*/
final Folder folder;
@@ -102,8 +97,7 @@ class ContextInfo {
ContextInfo(ContextManagerImpl contextManager, this.parent, Folder folder,
File packagespecFile, this.packageRoot)
- : contextManager = contextManager,
- folder = folder,
+ : folder = folder,
pathFilter = new PathFilter(
folder.path, null, contextManager.resourceProvider.pathContext) {
packageDescriptionPath = packagespecFile.path;
@@ -115,8 +109,7 @@ class ContextInfo {
* [ContextInfo]s.
*/
ContextInfo._root()
- : contextManager = null,
- folder = null,
+ : folder = null,
pathFilter = null;
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698