File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pkg/analysis_server/lib/src/services/correction/dart Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ abstract class CorrectionProducer<T extends ParsedUnitResult>
102
102
Future <void > compute (ChangeBuilder builder);
103
103
}
104
104
105
- class CorrectionProducerContext <T extends ParsedUnitResult > {
105
+ class CorrectionProducerContext <UnitResult extends ParsedUnitResult > {
106
106
final int selectionOffset;
107
107
final int selectionLength;
108
108
final int selectionEnd;
@@ -113,7 +113,7 @@ class CorrectionProducerContext<T extends ParsedUnitResult> {
113
113
114
114
final AnalysisSession session;
115
115
final AnalysisSessionHelper sessionHelper;
116
- final T unitResult;
116
+ final UnitResult unitResult;
117
117
final ChangeWorkspace workspace;
118
118
119
119
/// TODO(migration) Make it non-nullable, specialize "fix" context?
You can’t perform that action at this time.
0 commit comments