aboutsummaryrefslogtreecommitdiffstats
path: root/abi-check-plugin
diff options
context:
space:
mode:
authorIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-11-30 12:47:04 +0100
committerIlpo Ruotsalainen <ilpo.ruotsalainen@oath.com>2018-11-30 12:47:04 +0100
commit41583d401931e37af7d2b293d7d353e6cfae8b90 (patch)
tree521237fb486733f4d90e62df9db503f8f9378f4b /abi-check-plugin
parent233f44b0585d02d1f4fd100eead9d274f4bdb9ef (diff)
No need to test debug methods.
Diffstat (limited to 'abi-check-plugin')
-rw-r--r--abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java b/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
index c5a6443b68b..c72c6009d13 100644
--- a/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
+++ b/abi-check-plugin/src/main/java/com/yahoo/abicheck/classtree/ClassFileTree.java
@@ -71,10 +71,12 @@ public abstract class ClassFileTree implements AutoCloseable {
return name;
}
+ // CLOVER:OFF
@Override
public String toString() {
return "ClassFile(" + parent.getFullyQualifiedName() + "." + name + ")";
}
+ // CLOVER:ON
}
public static class Package {
@@ -113,9 +115,11 @@ public abstract class ClassFileTree implements AutoCloseable {
return classFiles;
}
+ // CLOVER:OFF
@Override
public String toString() {
return "Package(" + getFullyQualifiedName() + ")";
}
+ // CLOVER:ON
}
}