JDK-8232739 : Reminder to remove obsoleted flags: -Xconcgc, -Xnoconcgc
  • Type: Bug
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 15
  • Priority: P5
  • Status: Closed
  • Resolution: Duplicate
  • Submitted: 2019-10-21
  • Updated: 2019-12-13
  • Resolved: 2019-12-13
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 15
15Resolved
Related Reports
Duplicate :  
Description
remove the following code in arguments.cpp

    // -Xconcgc
    } else if (match_option(option, "-Xconcgc")) {
      warning("-Xconcgc uses UseConcMarkSweepGC; support was removed for both options in 14.0");
    // -Xnoconcgc
    } else if (match_option(option, "-Xnoconcgc")) {
      warning("-Xnoconcgc uses UseConcMarkSweepGC; support was removed for both options in 14.0");
Comments
I'm handling this as part of the expired flags removal under JDK-8231559.
13-12-2019