This commit is contained in:
Andreas Gal 2014-07-11 21:24:24 -07:00
Родитель b2d323445d
Коммит a6733574d9
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -117,7 +117,6 @@ Classes.prototype.setStaticField = function(className, fieldName, value) {
}
Classes.prototype.getMethod = function(className, methodName, signature, staticFlag) {
console.log(className, methodName);
// Only force initialization when accessing a static method.
var classData = this.getClass(className, staticFlag);
var methods = classData.getMethods();
@ -129,7 +128,7 @@ Classes.prototype.getMethod = function(className, methodName, signature, staticF
if (ACCESS_FLAGS.isNative(methods[i].access_flags)) {
return NATIVE.getMethod(className, methodName, signature.toString());
}
return new Frame(classData, methods[i], className, methodName, signature);
return new Frame(classData, methods[i]);
}
}
}