File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
frontend_server_common/lib/src Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ class WebDevFS {
29
29
required this .projectDirectory,
30
30
required this .packageUriMapper,
31
31
required this .index,
32
- this .soundNullSafety = true ,
33
32
this .urlTunneler,
34
33
required this .sdkLayout,
35
34
required this .compilerOptions,
@@ -46,9 +45,6 @@ class WebDevFS {
46
45
List <Uri > sources = < Uri > [];
47
46
DateTime ? lastCompiled;
48
47
49
- @Deprecated ('Only sound null safety is supported as of Dart 3.0' )
50
- final bool soundNullSafety;
51
-
52
48
final TestSdkLayout sdkLayout;
53
49
final CompilerOptions compilerOptions;
54
50
Original file line number Diff line number Diff line change @@ -14,11 +14,8 @@ import 'package:test_common/test_sdk_layout.dart';
14
14
/// Implementation for SDK configuration for tests that can generate
15
15
/// missing assets.
16
16
///
17
- /// - Generate SDK js, source map, and full dill (normally included in flutter
18
- /// SDK or produced by build).
19
- ///
20
- /// TODO(annagrin): update to only generating missing sound artifacts
21
- /// for frontend server after we have no uses of weak null safety.
17
+ /// - Generate SDK js, source map (normally included in flutter SDK
18
+ /// or produced by build).
22
19
class TestSdkConfigurationProvider extends SdkConfigurationProvider {
23
20
final _logger = Logger ('TestSdkConfigurationProvider' );
24
21
You can’t perform that action at this time.
0 commit comments