Skip to content

Commit 10bd6a2

Browse files
committed
fix calling base class methods
1 parent 8dec77b commit 10bd6a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/runtime/src/main/cpp/CallbackHandlers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ void CallbackHandlers::CallJavaMethod(const Local<Object> &caller, const string
210210
string *returnType = nullptr;
211211
auto retType = MethodReturnType::Unknown;
212212
MethodCache::CacheMethodInfo mi;
213-
auto &entrySignature = entry->getSig();
214213

215214
auto isolate = args.GetIsolate();
216215

217216
if ((entry != nullptr) && entry->getIsResolved()) {
217+
auto &entrySignature = entry->getSig();
218218
isStatic = entry->isStatic;
219219

220220
if (entry->memberId == nullptr) {

0 commit comments

Comments
 (0)