OpenJDK / amber / amber
changeset 52221:89d2f870e92c
8209698: Remove "Pinned" from HeapRegionTraceType
Reviewed-by: iklam
author | tschatzl |
---|---|
date | Wed, 22 Aug 2018 20:37:07 +0200 |
parents | 1906adbef2dc |
children | bf6b66fa8bdf |
files | src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp Wed Aug 22 20:37:07 2018 +0200 +++ b/src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp Wed Aug 22 20:37:07 2018 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -37,7 +37,6 @@ StartsHumongous, ContinuesHumongous, Old, - Pinned, OpenArchive, ClosedArchive, G1HeapRegionTypeEndSentinel @@ -51,7 +50,6 @@ case StartsHumongous: return "Starts Humongous"; case ContinuesHumongous: return "Continues Humongous"; case Old: return "Old"; - case Pinned: return "Pinned"; case OpenArchive: return "OpenArchive"; case ClosedArchive: return "ClosedArchive"; default: ShouldNotReachHere(); return NULL;