8049426: Minor cleanups after G1 class unloading

Reviewed-by: stefank, brutisso
This commit is contained in:
Erik Helin 2014-07-09 16:44:30 +02:00
parent 1b001a2afd
commit b77bc85799
4 changed files with 5 additions and 4 deletions

View file

@ -169,7 +169,7 @@ G1CodeRootSet::~G1CodeRootSet() {
void G1CodeRootSet::add(nmethod* method) {
if (!contains(method)) {
// Find the first chunk thatisn't full.
// Find the first chunk that isn't full.
G1CodeRootChunk* cur = _list.head();
while (cur != NULL) {
if (!cur->is_full()) {