8294618: Update openjdk.java.net => openjdk.org

Reviewed-by: mikael, iris, joehw, prr, ihse
This commit is contained in:
Joe Darcy 2022-10-05 16:48:09 +00:00
parent f531dae4a0
commit 536c9a512e
45 changed files with 128 additions and 128 deletions

View file

@ -568,7 +568,7 @@ public class Object {
* @deprecated Finalization is deprecated and subject to removal in a future
* release. The use of finalization can lead to problems with security,
* performance, and reliability.
* See <a href="https://openjdk.java.net/jeps/421">JEP 421</a> for
* See <a href="https://openjdk.org/jeps/421">JEP 421</a> for
* discussion and alternatives.
* <p>
* Subclasses that override {@code finalize} to perform cleanup should use

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1995, 2021, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1995, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -310,7 +310,7 @@ import sun.security.util.SecurityConstants;
* @since 1.0
* @deprecated The Security Manager is deprecated and subject to removal in a
* future release. There is no replacement for the Security Manager.
* See <a href="https://openjdk.java.net/jeps/411">JEP 411</a> for
* See <a href="https://openjdk.org/jeps/411">JEP 411</a> for
* discussion and alternatives.
*/
@Deprecated(since="17", forRemoval=true)

View file

@ -160,7 +160,7 @@ public enum ClassFileFormatVersion {
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se11/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 11 Edition</cite></a>
* @see <a href="https://openjdk.java.net/jeps/181">
* @see <a href="https://openjdk.org/jeps/181">
* JEP 181: Nest-Based Access Control</a>
*/
RELEASE_11(55),
@ -202,7 +202,7 @@ public enum ClassFileFormatVersion {
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se15/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 15 Edition</cite></a>
* @see <a href="https://openjdk.java.net/jeps/371">
* @see <a href="https://openjdk.org/jeps/371">
* JEP 371: Hidden Classes</a>
*/
RELEASE_15(59),
@ -227,9 +227,9 @@ public enum ClassFileFormatVersion {
* @see <a
* href="https://docs.oracle.com/javase/specs/jvms/se17/html/index.html">
* <cite>The Java Virtual Machine Specification, Java SE 17 Edition</cite></a>
* @see <a href="https://openjdk.java.net/jeps/306">
* @see <a href="https://openjdk.org/jeps/306">
* JEP 306: Restore Always-Strict Floating-Point Semantics</a>
* @see <a href="https://openjdk.java.net/jeps/409">
* @see <a href="https://openjdk.org/jeps/409">
* JEP 409: Sealed Classes</a>
*/
RELEASE_17(61),

View file

@ -3021,7 +3021,7 @@ public class CompletableFuture<T> implements Future<T>, CompletionStage<T> {
}
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}
}

View file

@ -6376,7 +6376,7 @@ public class ConcurrentHashMap<K,V> extends AbstractMap<K,V>
ASHIFT = 31 - Integer.numberOfLeadingZeros(scale);
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
// Eager class load observed to help JIT during startup

View file

@ -1570,7 +1570,7 @@ public abstract class ForkJoinTask<V> implements Future<V>, Serializable {
* @since 19
*/
public static <T> ForkJoinTask<T> adaptInterruptible(Callable<? extends T> callable) {
// https://bugs.openjdk.java.net/browse/JDK-8246587
// https://bugs.openjdk.org/browse/JDK-8246587
return new AdaptedInterruptibleCallable<T>(callable);
}

View file

@ -583,7 +583,7 @@ public class FutureTask<V> implements RunnableFuture<V> {
}
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}

View file

@ -1660,7 +1660,7 @@ public class LinkedTransferQueue<E> extends AbstractQueue<E>
}
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}
}

View file

@ -1147,7 +1147,7 @@ public class Phaser {
}
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}
}

View file

@ -1517,7 +1517,7 @@ public class SubmissionPublisher<T> implements Publisher<T>,
}
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}
}

View file

@ -1162,7 +1162,7 @@ public class SynchronousQueue<E> extends AbstractQueue<E>
static {
// Reduce the risk of rare disastrous classloading in first call to
// LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
// LockSupport.park: https://bugs.openjdk.org/browse/JDK-8074773
Class<?> ensureLoaded = LockSupport.class;
}
}