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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java

Issue 294903015: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java
diff --git a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java
index 58641cdd2c3807a79c7136f09973bbfacfda395d..24dff7a5d649d3aaf0dbdb4622e9ade7b9eac22a 100644
--- a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java
+++ b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/EngineExceptionProcessor.java
@@ -108,7 +108,6 @@ public class EngineExceptionProcessor extends SemanticProcessor {
AstNode parent = node.getParent();
if (parent instanceof ArgumentList || parent instanceof AssignmentExpression
&& ((AssignmentExpression) parent).getRightHandSide() == node) {
- System.out.println(parent);
Block block = node.getAncestor(Block.class);
if (block != null && block.getParent() instanceof CatchClause) {
CatchClause catchClause = (CatchClause) block.getParent();

Powered by Google App Engine
This is Rietveld 408576698