--- old/src/hotspot/share/gc/g1/g1HotCardCache.cpp 2019-09-03 21:16:16.157726782 -0400 +++ new/src/hotspot/share/gc/g1/g1HotCardCache.cpp 2019-09-03 21:16:15.941715142 -0400 @@ -99,8 +99,7 @@ for (size_t i = start_idx; i < end_idx; i++) { CardValue* card_ptr = _hot_cache[i]; if (card_ptr != NULL) { - bool result = cl->do_card_ptr(card_ptr, worker_i); - assert(result, "Closure should always return true"); + cl->do_card_ptr(card_ptr, worker_i); } else { break; }