@@ -324,7 +324,7 @@ internalFindClassString(J9VMThread* currentThread, j9object_t moduleName, j9obje
324324 if (!fastMode ) {
325325 omrthread_monitor_enter (vm -> classTableMutex );
326326 }
327- result = hashClassTableAtString (classLoader , (j9object_t ) className , 0 );
327+ result = hashClassTableAtString (classLoader , (j9object_t ) className , options );
328328#if defined(J9VM_OPT_SNAPSHOTS )
329329 if ((NULL != result ) && IS_RESTORE_RUN (vm )) {
330330 if (!loadWarmClassFromSnapshot (currentThread , classLoader , result )) {
@@ -1183,7 +1183,7 @@ loadNonArrayClass(J9VMThread* vmThread, J9Module *j9module, U_8* className, UDAT
11831183 omrthread_monitor_enter (vm -> classTableMutex );
11841184 }
11851185
1186- foundClass = hashClassTableAt (classLoader , className , classNameLength , 0 );
1186+ foundClass = hashClassTableAt (classLoader , className , classNameLength , options );
11871187 if (NULL != foundClass ) {
11881188#if defined(J9VM_OPT_SNAPSHOTS )
11891189 if (IS_RESTORE_RUN (vm )) {
@@ -1214,7 +1214,7 @@ loadNonArrayClass(J9VMThread* vmThread, J9Module *j9module, U_8* className, UDAT
12141214 omrthread_monitor_enter (vm -> classTableMutex );
12151215
12161216 /* check again if somebody else already loaded the class */
1217- foundClass = hashClassTableAt (classLoader , className , classNameLength , 0 );
1217+ foundClass = hashClassTableAt (classLoader , className , classNameLength , options );
12181218 if (NULL != foundClass ) {
12191219#if defined(J9VM_OPT_SNAPSHOTS )
12201220 if (IS_RESTORE_RUN (vm )
0 commit comments