We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41c122b commit f635751Copy full SHA for f635751
1 file changed
packages/devtools_shared/lib/src/test/io_utils.dart
@@ -94,11 +94,11 @@ mixin IOMixin {
94
Process.killPid(processId);
95
return process.exitCode.timeout(
96
killTimeout,
97
- onTimeout: () => _killForcefully(process, debugLogging: debugLogging),
+ onTimeout: () => killForcefully(process, debugLogging: debugLogging),
98
);
99
}
100
101
- Future<int> _killForcefully(
+ Future<int> killForcefully(
102
Process process, {
103
bool debugLogging = false,
104
}) {
0 commit comments