deprecate unused code

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3665 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-06-12 14:54:09 +00:00
parent 7bb0b09935
commit fa56f1e6c9
2 changed files with 6 additions and 0 deletions

View File

@ -21,7 +21,10 @@ import com.ibm.wala.util.collections.Pair;
* utility.
*
* This abstraction does not include a call site reference, so this edge might actually represent several distinct call sites.
*
* @deprecated because no one seems to use this currently.
*/
@Deprecated
public class CGEdge extends Pair<CGNode, CGNode> {
public CGEdge(CGNode src, CGNode dest) {

View File

@ -20,7 +20,10 @@ import com.ibm.wala.classLoader.CallSiteReference;
* utility.
*
* This abstraction does not include a call site reference, so this edge might actually represent several distinct call sites.
*
* @deprecated because no one seems to use this currently.
*/
@Deprecated
public class CGLabeledEdge extends CGEdge {
private final CallSiteReference label;