8215160: Normalize spaces for remaining vmTestbase tests

Add spaces where needed

Reviewed-by: sspitsyn, amenkov
This commit is contained in:
Jean Christophe Beyler 2018-12-11 12:45:38 -08:00
parent 9be447e22f
commit 019bd7cf2b
22 changed files with 101 additions and 100 deletions

View File

@ -48,8 +48,9 @@ Java_nsk_stress_jni_JNIter006_refs (JNIEnv *env, jobject jobj, jobject tobj, jin
if (upper >= LIMIT) return JNI_TRUE; if (upper >= LIMIT) return JNI_TRUE;
if (upper==0) if (upper == 0) {
globRefsArray=(jobject*)(malloc(LIMIT*sizeof(jobject))); globRefsArray=(jobject*)(malloc(LIMIT*sizeof(jobject)));
}
globRefsArray[upper]=env->NewGlobalRef(tobj); CE globRefsArray[upper]=env->NewGlobalRef(tobj); CE
if (env->IsSameObject(tobj, globRefsArray[upper])) { if (env->IsSameObject(tobj, globRefsArray[upper])) {