Jump to the found text after pcode search fixed

This commit is contained in:
2016-12-25 14:22:01 +01:00
parent 9ecb2e4a81
commit bf59e9e5fb
5 changed files with 189 additions and 133 deletions
@@ -40,7 +40,7 @@ public class AS2Cache {
return cache.contains(src);
}
public boolean isPcodeCached(ASMSource src) {
public boolean isPCodeCached(ASMSource src) {
return pcodeCache.contains(src);
}
@@ -48,7 +48,7 @@ public class AS2Cache {
return cache.get(src);
}
public ActionList getPcode(ASMSource src) {
public ActionList getPCode(ASMSource src) {
return pcodeCache.get(src);
}