minor type fix

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@4214 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2011-07-06 19:50:56 +00:00
parent b5192e79a9
commit 9980532da1
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public abstract class CAstRewriter<C extends CAstRewriter.RewriteContext<K>, K e
Entry<Pair<CAstNode, K>, CAstNode> entry = NS.next();
Pair<CAstNode, K> N = entry.getKey();
CAstNode oldSource = N.fst;
CopyKey key = N.snd;
K key = N.snd;
CAstNode newSource = (CAstNode) entry.getValue();
assert newSource != null;