8343439: [JVMCI] Fix javadoc of Services.getSavedProperties

Reviewed-by: never
This commit is contained in:
Doug Simon 2024-11-01 17:04:23 +00:00
parent ea110c35f5
commit 1eccdfc622

@ -86,10 +86,12 @@ public final class Services {
}
/**
* Gets an unmodifiable copy of the system properties parsed by {@code arguments.cpp}
* plus {@code java.specification.version}, {@code os.name} and {@code os.arch}.
* The latter two are forced to be the real OS and architecture. That is, values
* for these two properties set on the command line are ignored.
* Gets an unmodifiable copy of the system properties as of VM startup.
*
* If running on Hotspot, this will be the system properties parsed by {@code arguments.cpp}
* plus {@code java.specification.version}, {@code os.name} and {@code os.arch}. The latter two
* are forced to be the real OS and architecture. That is, values for these two properties set
* on the command line are ignored.
*/
public static Map<String, String> getSavedProperties() {
checkJVMCIEnabled();