Project

General

Profile

ProcedureManager.java.diff

Hynek Cihlar, 04/24/2014 02:22 PM

Download (639 Bytes)

View differences:

src/com/goldencode/p2j/util/ProcedureManager.java 2014-04-24 16:55:33 +0000
1746 1746
         String mname = trace[i - 1].getMethodName();
1747 1747
         
1748 1748
         if (cname.equals(bmClass)&& 
1749
             ((function && mname.endsWith(funcApi)) || (!function && mname.equals(procApi))))
1749
             ((function && mname.toLowerCase().endsWith(funcApi)) || (!function && mname.toLowerCase().equals(procApi))))
1750 1750
         {
1751 1751
            foundBlockManager = true;
1752 1752
         }