--- old/src/hotspot/share/gc/g1/heapRegion.hpp 2018-02-09 12:17:33.730219043 +0100 +++ new/src/hotspot/share/gc/g1/heapRegion.hpp 2018-02-09 12:17:33.296205863 +0100 @@ -719,23 +719,23 @@ }; // HeapRegionClosure is used for iterating over regions. -// Terminates the iteration when the "do_heap_region" method returns "true". +// Terminates the iteration when the "doHeapRegion" method returns "true". class HeapRegionClosure : public StackObj { friend class HeapRegionManager; friend class G1CollectionSet; - bool _is_complete; - void set_incomplete() { _is_complete = false; } + bool _complete; + void incomplete() { _complete = false; } public: - HeapRegionClosure(): _is_complete(true) {} + HeapRegionClosure(): _complete(true) {} // Typically called on each region until it returns true. - virtual bool do_heap_region(HeapRegion* r) = 0; + virtual bool doHeapRegion(HeapRegion* r) = 0; // True after iteration if the closure was applied to all heap regions // and returned "false" in all cases. - bool is_complete() { return _is_complete; } + bool complete() { return _complete; } }; #endif // SHARE_VM_GC_G1_HEAPREGION_HPP