Index: tools/testing/dart/test_runner.dart |
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart |
index c98e9dc9f924119530934e0ce7a508052ccb4297..d4cecea48ff60b36aea860dda64ce4ba0b965589 100644 |
--- a/tools/testing/dart/test_runner.dart |
+++ b/tools/testing/dart/test_runner.dart |
@@ -1791,7 +1791,7 @@ class OutputLog { |
void _checkUtf8(List<int> data) { |
try { |
UTF8.decode(data, allowMalformed: false); |
- } on FormatException catch (e) { |
+ } on FormatException { |
hasNonUtf8 = true; |
String malformed = UTF8.decode(data, allowMalformed: true); |
data |