Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(779)

Unified Diff: pkg/compiler/lib/src/helpers/trace.dart

Issue 1173403002: dart2js: Fix hints in code base. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Updated to latest revision Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/helpers/trace.dart
diff --git a/pkg/compiler/lib/src/helpers/trace.dart b/pkg/compiler/lib/src/helpers/trace.dart
index 3225c269d882a538f688010e46735de83f953433..f19b0d0c3b0df9b76dc991091d9889a82a09a7f5 100644
--- a/pkg/compiler/lib/src/helpers/trace.dart
+++ b/pkg/compiler/lib/src/helpers/trace.dart
@@ -155,7 +155,7 @@ class StackTraceLines {
columnNo = line.substring(lastColon+1, rightParenPos);
try {
int.parse(lineNo);
- } on FormatException catch (e) {
+ } on FormatException {
lineNo = columnNo;
columnNo = '';
nextToLastColon = lastColon;

Powered by Google App Engine
This is Rietveld 408576698