aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core.test/src/org
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2014-10-31 17:28:24 +0100
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2014-10-31 17:28:24 +0100
commit9f0b1351547fb982c71b9db6cc76fc44a13ff51f (patch)
tree31fc842c05abf32cdd42f81b1bda83244e17ea73 /org.jacoco.core.test/src/org
parent2b2aaff9746d3e53c02986c4aff0878a03332994 (diff)
downloadjacoco-9f0b1351547fb982c71b9db6cc76fc44a13ff51f.tar.gz
Use ASM pattern of non-abstract methods to address issue raised in #257.
Diffstat (limited to 'org.jacoco.core.test/src/org')
-rw-r--r--org.jacoco.core.test/src/org/jacoco/core/internal/flow/ClassProbesAdapterTest.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ClassProbesAdapterTest.java b/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ClassProbesAdapterTest.java
index b4c94f1c..d5db2a25 100644
--- a/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ClassProbesAdapterTest.java
+++ b/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ClassProbesAdapterTest.java
@@ -31,20 +31,12 @@ public class ClassProbesAdapterTest {
boolean frame = false;
@Override
- public void visitProbe(int probeId) {
- }
-
- @Override
public void visitJumpInsnWithProbe(int opcode, Label label,
int probeId, IFrame frame) {
frame.accept(this);
}
@Override
- public void visitInsnWithProbe(int opcode, int probeId) {
- }
-
- @Override
public void visitTableSwitchInsnWithProbes(int min, int max,
Label dflt, Label[] labels, IFrame frame) {
frame.accept(this);