-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: hs24
-
Component/s: hotspot
-
b51
| Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
|---|---|---|---|---|---|---|
| JDK-8020241 | 7u60 | Unassigned | P3 | Resolved | Fixed | b01 |
| JDK-8019891 | 7u45 | Unassigned | P3 | Closed | Fixed | b02 |
| JDK-8019603 | 7u40 | Unassigned | P3 | Closed | Fixed | b32 |
The fix for bug JDK-8011891 got (by mistake) pushed twice, see http://hg.openjdk.java.net/hsx/hsx24/hotspot/log?rev=8011891.
This resulted in duplicated code in concurrentMarkSweepGeneration.cpp:
void CMSCollector::acquire_control_and_collect(bool full,
bool clear_all_soft_refs) {
....
if (first_state > Idling) {
save_heap_summary();
}
if (first_state > Idling) {
save_heap_summary();
}
....
}
This resulted in duplicated code in concurrentMarkSweepGeneration.cpp:
void CMSCollector::acquire_control_and_collect(bool full,
bool clear_all_soft_refs) {
....
if (first_state > Idling) {
save_heap_summary();
}
if (first_state > Idling) {
save_heap_summary();
}
....
}
- backported by
-
JDK-8020241 Remove extra code due to duplicated push
-
- Resolved
-
-
JDK-8019603 Remove extra code due to duplicated push
-
- Closed
-
-
JDK-8019891 Remove extra code due to duplicated push
-
- Closed
-