Skip to content

Commit

Permalink
EquivalentValue: add back getDeepestValue(), add deprecated tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
wishstudio committed Dec 16, 2013
1 parent eda0385 commit f681fb6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/soot/EquivalentValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ public boolean equivToValue(Value v) {
public boolean equalsToValue(Value v) {
return e.equals(v);
}

/**
* @deprecated
* @see #getValue()
**/
public Value getDeepestValue() {
return getValue();
}

public int hashCode() { return e.equivHashCode(); }
public String toString() { return e.toString(); }
Expand Down

0 comments on commit f681fb6

Please sign in to comment.