diff --git a/lib/elinux_device.dart b/lib/elinux_device.dart index af2d0a6..1e0e6cb 100644 --- a/lib/elinux_device.dart +++ b/lib/elinux_device.dart @@ -315,13 +315,7 @@ class ELinuxDevice extends Device { void onAttached(ELinuxApp package, BuildMode buildMode, Process process) {} - /// Computes a set of environment variables used to pass debugging information - /// to the engine without interfering with application level command line - /// arguments. - /// - /// The format of the environment variables is: - /// * FLUTTER_ENGINE_SWITCHES to the number of switches. - /// * FLUTTER_ENGINE_SWITCH_ (indexing from 1) to the individual switches. + /// Source: [DesktopDevice._computeEnvironment] in `desktop_device.dart` Map _computeEnvironment( DebuggingOptions debuggingOptions, bool traceStartup, String route) { int flags = 0; @@ -337,7 +331,6 @@ class ELinuxDevice extends Device { } addFlag('enable-dart-profiling=true'); - addFlag('enable-background-compilation=true'); if (traceStartup) { addFlag('trace-startup=true');