hotspot/src/share/vm/memory/metaspaceGCThresholdUpdater.hpp
changeset 33105 294e48b4f704
parent 30578 8b6c44532ca2
equal deleted inserted replaced
33104:a7c0f60a1294 33105:294e48b4f704
    41       case ComputeNewSize:
    41       case ComputeNewSize:
    42         return "compute_new_size";
    42         return "compute_new_size";
    43       case ExpandAndAllocate:
    43       case ExpandAndAllocate:
    44         return "expand_and_allocate";
    44         return "expand_and_allocate";
    45       default:
    45       default:
    46         assert(false, err_msg("Got bad updater: %d", (int) updater));
    46         assert(false, "Got bad updater: %d", (int) updater);
    47         return NULL;
    47         return NULL;
    48     };
    48     };
    49   }
    49   }
    50 };
    50 };
    51 
    51