< prev index next >

src/java.base/share/classes/jdk/internal/util/SystemProps.java

Print this page

        

*** 89,99 **** putIfAbsent(props, "socksProxyPort", raw.propDefault(Raw._socksProxyPort_NDX)); putIfAbsent(props, "http.nonProxyHosts", raw.propDefault(Raw._http_nonProxyHosts_NDX)); putIfAbsent(props, "ftp.nonProxyHosts", raw.propDefault(Raw._ftp_nonProxyHosts_NDX)); putIfAbsent(props, "socksNonProxyHosts", raw.propDefault(Raw._socksNonProxyHosts_NDX)); putIfAbsent(props, "awt.toolkit", raw.propDefault(Raw._awt_toolkit_NDX)); - putIfAbsent(props, "java.awt.headless", raw.propDefault(Raw._java_awt_headless_NDX)); putIfAbsent(props, "sun.arch.abi", raw.propDefault(Raw._sun_arch_abi_NDX)); putIfAbsent(props, "sun.arch.data.model", raw.propDefault(Raw._sun_arch_data_model_NDX)); putIfAbsent(props, "sun.os.patch.level", raw.propDefault(Raw._sun_os_patch_level_NDX)); putIfAbsent(props, "sun.stdout.encoding", raw.propDefault(Raw._sun_stdout_encoding_NDX)); putIfAbsent(props, "sun.stderr.encoding", raw.propDefault(Raw._sun_stderr_encoding_NDX)); --- 89,98 ----
*** 203,214 **** @Native private static final int _http_nonProxyHosts_NDX = 1 + _ftp_proxyPort_NDX; @Native private static final int _http_proxyHost_NDX = 1 + _http_nonProxyHosts_NDX; @Native private static final int _http_proxyPort_NDX = 1 + _http_proxyHost_NDX; @Native private static final int _https_proxyHost_NDX = 1 + _http_proxyPort_NDX; @Native private static final int _https_proxyPort_NDX = 1 + _https_proxyHost_NDX; ! @Native private static final int _java_awt_headless_NDX = 1 + _https_proxyPort_NDX; ! @Native private static final int _java_io_tmpdir_NDX = 1 + _java_awt_headless_NDX; @Native private static final int _line_separator_NDX = 1 + _java_io_tmpdir_NDX; @Native private static final int _os_arch_NDX = 1 + _line_separator_NDX; @Native private static final int _os_name_NDX = 1 + _os_arch_NDX; @Native private static final int _os_version_NDX = 1 + _os_name_NDX; @Native private static final int _path_separator_NDX = 1 + _os_version_NDX; --- 202,212 ---- @Native private static final int _http_nonProxyHosts_NDX = 1 + _ftp_proxyPort_NDX; @Native private static final int _http_proxyHost_NDX = 1 + _http_nonProxyHosts_NDX; @Native private static final int _http_proxyPort_NDX = 1 + _http_proxyHost_NDX; @Native private static final int _https_proxyHost_NDX = 1 + _http_proxyPort_NDX; @Native private static final int _https_proxyPort_NDX = 1 + _https_proxyHost_NDX; ! @Native private static final int _java_io_tmpdir_NDX = 1 + _https_proxyPort_NDX; @Native private static final int _line_separator_NDX = 1 + _java_io_tmpdir_NDX; @Native private static final int _os_arch_NDX = 1 + _line_separator_NDX; @Native private static final int _os_name_NDX = 1 + _os_arch_NDX; @Native private static final int _os_version_NDX = 1 + _os_name_NDX; @Native private static final int _path_separator_NDX = 1 + _os_version_NDX;
< prev index next >