Skip to content

Commit e4ba3ee

Browse files
committed
added debug support to FastHierarchy
1 parent 7b7ecc7 commit e4ba3ee

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/soot/FastHierarchy.java

+5
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,11 @@ public boolean isSubrange(Interval potentialSubrange) {
125125
return (potentialSubrange == this)
126126
|| (potentialSubrange != null && this.lower <= potentialSubrange.lower && this.upper >= potentialSubrange.upper);
127127
}
128+
129+
@Override
130+
public String toString() {
131+
return String.format("%d - %d", lower, upper);
132+
}
128133
}
129134

130135
protected int dfsVisit(int start, SootClass c) {

0 commit comments

Comments
 (0)