Fixed getSignature method in order to return the usual scheme for method signatures in WALA.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1742 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
egeay 2007-09-11 15:36:38 +00:00
parent 10e631a752
commit 44d92505c6
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ public abstract class AstMethod implements IMethod {
}
public String getSignature() {
return ref.toString();
return ref.getSignature();
}
public Selector getSelector() {