Added toString() impl.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3565 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
rmfuhrer 2009-05-05 15:38:27 +00:00
parent ab5716c6ca
commit d38bfeb577
1 changed files with 5 additions and 0 deletions

View File

@ -83,4 +83,9 @@ public class CAstQualifier {
result = result * 13 + fName.hashCode();
return result;
}
@Override
public String toString() {
return fName;
}
}