From f681fb630906b34955387c06396967a8412275d5 Mon Sep 17 00:00:00 2001 From: Xiangyan Sun Date: Mon, 16 Dec 2013 15:57:41 +0800 Subject: [PATCH] EquivalentValue: add back getDeepestValue(), add deprecated tag. --- src/soot/EquivalentValue.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/soot/EquivalentValue.java b/src/soot/EquivalentValue.java index cea3a83b356..3f4144362b1 100644 --- a/src/soot/EquivalentValue.java +++ b/src/soot/EquivalentValue.java @@ -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(); }