Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Commit 72f1f3c

Browse files
committed
mentioned #102
1 parent a230246 commit 72f1f3c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/c/jpy_jtype.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,6 +1075,8 @@ int JType_ProcessClassMethods(JNIEnv* jenv, JPy_JType* type)
10751075
if (type->isInterface) {
10761076
methods = (*jenv)->CallObjectMethod(jenv, classRef, JPy_Class_GetMethods_MID);
10771077
} else {
1078+
// TODO: write unit test case that justifies and verifies use of Class.getMethods(). See #102 by cpwright.
1079+
// methods = (*jenv)->CallObjectMethod(jenv, classRef, JPy_Class_GetDeclaredMethods_MID);
10781080
methods = (*jenv)->CallObjectMethod(jenv, classRef, JPy_Class_GetMethods_MID);
10791081
}
10801082
methodCount = (*jenv)->GetArrayLength(jenv, methods);

0 commit comments

Comments
 (0)