Skip to content

Commit

Permalink
JDK 24 build fixes (#2327)
Browse files Browse the repository at this point in the history
There are just some javadoc related issues which leads into errors and block EclipseLink on JDK 24

Signed-off-by: Radek Felcman <[email protected]>
  • Loading branch information
rfelcman authored Jan 15, 2025
1 parent 7457271 commit 48530ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -36,7 +36,7 @@ public class WrappedByteArray {
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
* {@code JAXBElement<byte[]>}
*
*/
public JAXBElement<byte[]> getInByteArray() {
Expand All @@ -48,7 +48,7 @@ public JAXBElement<byte[]> getInByteArray() {
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link byte[]}{@code >}
* {@code JAXBElement<byte[]>}
*
*/
public void setInByteArray(JAXBElement<byte[]> value) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2024 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
Expand Down Expand Up @@ -53,7 +53,7 @@ public JAXBElement<Foo> createFoo(Foo value) {
}

/**
* Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
* Create an instance of {@code JAXBElement<byte[]>}
*
*/
@XmlElementDecl(namespace = "", name = "e1", scope = Foo.class)
Expand All @@ -63,7 +63,7 @@ public JAXBElement<byte[]> createFooE1(byte[] value) {
}

/**
* Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
* Create an instance of {@code JAXBElement<byte[]>}
*
*/
@XmlElementDecl(namespace = "", name = "e2", scope = Foo.class)
Expand Down

0 comments on commit 48530ea

Please sign in to comment.