Skip to content

Commit 7bc093b

Browse files
committed
1 parent 50bdab3 commit 7bc093b

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

pkg/analysis_server/lib/src/context_manager.dart

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ import 'package:yaml/yaml.dart';
4545
* Information tracked by the [ContextManager] for each context.
4646
*/
4747
class ContextInfo {
48-
/**
49-
* The [ContextManager] which is tracking this information.
50-
*/
51-
final ContextManagerImpl contextManager;
52-
5348
/**
5449
* The [Folder] for which this information object is created.
5550
*/
@@ -102,8 +97,7 @@ class ContextInfo {
10297

10398
ContextInfo(ContextManagerImpl contextManager, this.parent, Folder folder,
10499
File packagespecFile, this.packageRoot)
105-
: contextManager = contextManager,
106-
folder = folder,
100+
: folder = folder,
107101
pathFilter = new PathFilter(
108102
folder.path, null, contextManager.resourceProvider.pathContext) {
109103
packageDescriptionPath = packagespecFile.path;
@@ -115,8 +109,7 @@ class ContextInfo {
115109
* [ContextInfo]s.
116110
*/
117111
ContextInfo._root()
118-
: contextManager = null,
119-
folder = null,
112+
: folder = null,
120113
pathFilter = null;
121114

122115
/**

0 commit comments

Comments
 (0)