Skip to content

Commit d5db35b

Browse files
[GR-65959] Merge in jdk-25+27 (25.0)
PullRequest: labsjdk-ce/182
2 parents eb65b4a + 124e42a commit d5db35b

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/java.base/share/classes/java/lang/IO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* <p>
3939
* The {@link #readln()} and {@link #readln(String)} methods decode bytes read from
4040
* {@code System.in} into characters. The charset used for decoding is specified by the
41-
* {@link System#getProperties stdin.encoding} property. If this property is not present,
41+
* {@link System##stdin.encoding stdin.encoding} property. If this property is not present,
4242
* or if the charset it names cannot be loaded, then UTF-8 is used instead. Decoding
4343
* always replaces malformed and unmappable byte sequences with the charset's default
4444
* replacement string.

test/jdk/java/net/HttpURLConnection/HttpURLConnectionExpectContinueTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ private HttpURLConnection createConnection() throws Exception {
429429
.port(control.serverSocket.getLocalPort())
430430
.toURL();
431431

432-
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
432+
HttpURLConnection connection = (HttpURLConnection) url.openConnection(Proxy.NO_PROXY);
433433
connection.setDoOutput(true);
434434
connection.setReadTimeout(5000);
435435
connection.setUseCaches(false);

test/jdk/security/infra/java/security/cert/CertPathValidator/certification/CAInterop.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -635,20 +635,20 @@ private CATestURLs getTestURLs(String alias) {
635635
"https://revoked.sfig2.catest.starfieldtech.com");
636636

637637
case "globalsigneccrootcar4" ->
638-
new CATestURLs("https://good.gsr4.demo.pki.goog",
639-
"https://revoked.gsr4.demo.pki.goog");
638+
new CATestURLs("https://good.gsr4.demosite.pki.goog",
639+
"https://revoked.gsr4.demosite.pki.goog");
640640
case "gtsrootcar1" ->
641-
new CATestURLs("https://good.gtsr1.demo.pki.goog",
642-
"https://revoked.gtsr1.demo.pki.goog");
641+
new CATestURLs("https://good.gtsr1.demosite.pki.goog",
642+
"https://revoked.gtsr1.demosite.pki.goog");
643643
case "gtsrootcar2" ->
644-
new CATestURLs("https://good.gtsr2.demo.pki.goog",
645-
"https://revoked.gtsr2.demo.pki.goog");
644+
new CATestURLs("https://good.gtsr2.demosite.pki.goog",
645+
"https://revoked.gtsr2.demosite.pki.goog");
646646
case "gtsrootecccar3" ->
647-
new CATestURLs("https://good.gtsr3.demo.pki.goog",
648-
"https://revoked.gtsr3.demo.pki.goog");
647+
new CATestURLs("https://good.gtsr3.demosite.pki.goog",
648+
"https://revoked.gtsr3.demosite.pki.goog");
649649
case "gtsrootecccar4" ->
650-
new CATestURLs("https://good.gtsr4.demo.pki.goog",
651-
"https://revoked.gtsr4.demo.pki.goog");
650+
new CATestURLs("https://good.gtsr4.demosite.pki.goog",
651+
"https://revoked.gtsr4.demosite.pki.goog");
652652

653653
case "microsoftecc2017" ->
654654
new CATestURLs("https://acteccroot2017.pki.microsoft.com",

0 commit comments

Comments
 (0)