aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java')
-rw-r--r--third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java b/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java
index efc066a5bf..0b4d747331 100644
--- a/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java
+++ b/third_party/checker_framework_dataflow/java/org/checkerframework/dataflow/cfg/node/AssertionErrorNode.java
@@ -1,15 +1,12 @@
package org.checkerframework.dataflow.cfg.node;
+import com.sun.source.tree.Tree;
+import com.sun.source.tree.Tree.Kind;
import java.util.Collection;
import java.util.LinkedList;
-
import javax.lang.model.type.TypeMirror;
-
import org.checkerframework.dataflow.util.HashCodeUtils;
-import com.sun.source.tree.Tree;
-import com.sun.source.tree.Tree.Kind;
-
/**
* A node for the {@link AssertionError} when an assertion fails.
*
@@ -19,7 +16,6 @@ import com.sun.source.tree.Tree.Kind;
*
* @author Stefan Heule
* @author Charlie Garrett
- *
*/
public class AssertionErrorNode extends Node {
@@ -66,8 +62,7 @@ public class AssertionErrorNode extends Node {
return false;
}
AssertionErrorNode other = (AssertionErrorNode) obj;
- return getCondition().equals(other.getCondition()) &&
- getDetail().equals(other.getDetail());
+ return getCondition().equals(other.getCondition()) && getDetail().equals(other.getDetail());
}
@Override