src/hotspot/share/prims/jvm.cpp
changeset 58177 4932dce35882
parent 58095 adc72cd1d1f2
child 58196 cea6839598e8
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
  1255       protection_domain  = caller_klass->protection_domain();
  1255       protection_domain  = caller_klass->protection_domain();
  1256     } else {
  1256     } else {
  1257       protection_domain = method->method_holder()->protection_domain();
  1257       protection_domain = method->method_holder()->protection_domain();
  1258     }
  1258     }
  1259 
  1259 
  1260     if ((!oopDesc::equals(previous_protection_domain, protection_domain)) && (protection_domain != NULL)) {
  1260     if ((previous_protection_domain != protection_domain) && (protection_domain != NULL)) {
  1261       local_array->push(protection_domain);
  1261       local_array->push(protection_domain);
  1262       previous_protection_domain = protection_domain;
  1262       previous_protection_domain = protection_domain;
  1263     }
  1263     }
  1264 
  1264 
  1265     if (is_privileged) break;
  1265     if (is_privileged) break;