This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.4.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 407251aa2067b25ccd33a179f52cc84bfac0088b Author: reta <[email protected]> AuthorDate: Thu Jan 7 21:34:59 2021 -0500 CXF-8401: java.lang.IllegalAccessError exception after updating Java 14 to 15 (cherry picked from commit b5902ef6f3e52b0a0be429a0114e59d404664080) --- .../cxf/microprofile/client/MicroProfileClientProviderFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/MicroProfileClientProviderFactory.java b/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/MicroProfileClientProviderFactory.java index a41e2b3..c7a7ac7 100644 --- a/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/MicroProfileClientProviderFactory.java +++ b/rt/rs/microprofile-client/src/main/java/org/apache/cxf/microprofile/client/MicroProfileClientProviderFactory.java @@ -88,7 +88,7 @@ public final class MicroProfileClientProviderFactory extends ProviderFactory { } static Comparator<ProviderInfo<?>> createComparator(MicroProfileClientFactoryBean bean) { - Comparator<ProviderInfo<?>> parent = ProviderFactory::compareCustomStatus; + Comparator<ProviderInfo<?>> parent = (o1, o2) -> compareCustomStatus(o1, o2); return new ContractComparator(bean, parent); }
