# HG changeset patch # User jwilhelm # Date 1561466191 -7200 # Node ID d3e45bd166dc8e968c65eec5086777c982bf9025 # Parent 80b27dc96ca32102a2334cbaf667b487283fa923# Parent 79c32c7b0992e6be846db9979e5f86a54af14aa2 Merge diff -r 80b27dc96ca3 -r d3e45bd166dc make/Docs.gmk diff -r 80b27dc96ca3 -r d3e45bd166dc src/hotspot/share/jvmci/jvmciCompilerToVM.cpp --- a/src/hotspot/share/jvmci/jvmciCompilerToVM.cpp Mon Jun 24 22:38:17 2019 -0400 +++ b/src/hotspot/share/jvmci/jvmciCompilerToVM.cpp Tue Jun 25 14:36:31 2019 +0200 @@ -609,12 +609,6 @@ return JVMCIENV->get_jobject(result); } -C2V_VMENTRY_NULL(jobject, resolveConstantInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index)) - constantPoolHandle cp = JVMCIENV->asConstantPool(jvmci_constant_pool); - oop result = cp->resolve_constant_at(index, CHECK_NULL); - return JVMCIENV->get_jobject(JVMCIENV->get_object_constant(result)); -C2V_END - C2V_VMENTRY_NULL(jobject, resolvePossiblyCachedConstantInPool, (JNIEnv* env, jobject, jobject jvmci_constant_pool, jint index)) constantPoolHandle cp = JVMCIENV->asConstantPool(jvmci_constant_pool); oop result = cp->resolve_possibly_cached_constant_at(index, CHECK_NULL); @@ -2673,7 +2667,6 @@ {CC "lookupAppendixInPool", CC "(" HS_CONSTANT_POOL "I)" OBJECTCONSTANT, FN_PTR(lookupAppendixInPool)}, {CC "lookupMethodInPool", CC "(" HS_CONSTANT_POOL "IB)" HS_RESOLVED_METHOD, FN_PTR(lookupMethodInPool)}, {CC "constantPoolRemapInstructionOperandFromCache", CC "(" HS_CONSTANT_POOL "I)I", FN_PTR(constantPoolRemapInstructionOperandFromCache)}, - {CC "resolveConstantInPool", CC "(" HS_CONSTANT_POOL "I)" OBJECTCONSTANT, FN_PTR(resolveConstantInPool)}, {CC "resolvePossiblyCachedConstantInPool", CC "(" HS_CONSTANT_POOL "I)" OBJECTCONSTANT, FN_PTR(resolvePossiblyCachedConstantInPool)}, {CC "resolveTypeInPool", CC "(" HS_CONSTANT_POOL "I)" HS_RESOLVED_KLASS, FN_PTR(resolveTypeInPool)}, {CC "resolveFieldInPool", CC "(" HS_CONSTANT_POOL "I" HS_RESOLVED_METHOD "B[I)" HS_RESOLVED_KLASS, FN_PTR(resolveFieldInPool)}, diff -r 80b27dc96ca3 -r d3e45bd166dc src/java.base/share/classes/javax/net/ssl/KeyManagerFactory.java --- a/src/java.base/share/classes/javax/net/ssl/KeyManagerFactory.java Mon Jun 24 22:38:17 2019 -0400 +++ b/src/java.base/share/classes/javax/net/ssl/KeyManagerFactory.java Tue Jun 25 14:36:31 2019 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2019, 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 @@ -127,9 +127,10 @@ * * @param algorithm the standard name of the requested algorithm. * See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#keymanagerfactory-algorithms"> + * KeyManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @return the new {@code KeyManagerFactory} object * @@ -165,9 +166,10 @@ * @param algorithm the standard name of the requested algorithm. * See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#keymanagerfactory-algorithms"> + * KeyManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @param provider the name of the provider. * @@ -209,9 +211,10 @@ * * @param algorithm the standard name of the requested algorithm. * See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#keymanagerfactory-algorithms"> + * KeyManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @param provider an instance of the provider. * diff -r 80b27dc96ca3 -r d3e45bd166dc src/java.base/share/classes/javax/net/ssl/TrustManagerFactory.java --- a/src/java.base/share/classes/javax/net/ssl/TrustManagerFactory.java Mon Jun 24 22:38:17 2019 -0400 +++ b/src/java.base/share/classes/javax/net/ssl/TrustManagerFactory.java Tue Jun 25 14:36:31 2019 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2019, 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 @@ -141,9 +141,10 @@ * * @param algorithm the standard name of the requested trust management * algorithm. See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#trustmanagerfactory-algorithms"> + * TrustManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @return the new {@code TrustManagerFactory} object * @@ -179,9 +180,10 @@ * * @param algorithm the standard name of the requested trust management * algorithm. See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#trustmanagerfactory-algorithms"> + * TrustManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @param provider the name of the provider. * @@ -223,9 +225,10 @@ * * @param algorithm the standard name of the requested trust management * algorithm. See the - * Java Security Standard Algorithm Names document - * for information about standard algorithm names. + * "{@docRoot}/../specs/security/standard-names.html#trustmanagerfactory-algorithms"> + * TrustManagerFactory section in the Java Security Standard + * Algorithm Names Specification for information about standard + * algorithm names. * * @param provider an instance of the provider. * diff -r 80b27dc96ca3 -r d3e45bd166dc src/java.desktop/share/classes/javax/swing/plaf/nimbus/doc-files/properties.html --- a/src/java.desktop/share/classes/javax/swing/plaf/nimbus/doc-files/properties.html Mon Jun 24 22:38:17 2019 -0400 +++ b/src/java.desktop/share/classes/javax/swing/plaf/nimbus/doc-files/properties.html Tue Jun 25 14:36:31 2019 +0200 @@ -2,10 +2,10 @@
-