Unverified Commit 9d97918c authored by Zachary Anderson's avatar Zachary Anderson Committed by GitHub

[flutter_tools] Prepare for OSError to implement Exception (#53258)

parent 05f059a5
......@@ -188,7 +188,7 @@ class IconTreeShaker {
await fontSubsetProcess.stdin.close();
} on Exception catch (_) {
// handled by checking the exit code.
} on OSError catch (_) {
} on OSError catch (_) { // ignore: dead_code_on_catch_subtype
// handled by checking the exit code.
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment