File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -782,8 +782,6 @@ final class AsyncEnvironment {
782
782
var values = _variables[i];
783
783
var nodes = _variableNodes[i];
784
784
for (var (name, value) in values.pairs) {
785
- // Implicit configurations are never invalid, making [configurationSpan]
786
- // unnecessary, so we pass null here to avoid having to compute it.
787
785
configuration[name] = ConfiguredValue .implicit (value, nodes[name]! );
788
786
}
789
787
}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ final class Configuration {
46
46
/// An implicit configuration will always return `false` because it was not
47
47
/// created through another configuration.
48
48
///
49
- /// [ExplicitConfiguration] s will and configurations created [throughForward]
49
+ /// [ExplicitConfiguration] s and configurations created [throughForward]
50
50
/// will be considered to have the same original config if they were created
51
51
/// as a copy from the same base configuration.
52
52
bool sameOriginal (Configuration that) =>
Original file line number Diff line number Diff line change @@ -788,8 +788,6 @@ final class Environment {
788
788
var values = _variables[i];
789
789
var nodes = _variableNodes[i];
790
790
for (var (name, value) in values.pairs) {
791
- // Implicit configurations are never invalid, making [configurationSpan]
792
- // unnecessary, so we pass null here to avoid having to compute it.
793
791
configuration[name] = ConfiguredValue .implicit (value, nodes[name]! );
794
792
}
795
793
}
You can’t perform that action at this time.
0 commit comments