Skip to content

Commit

Permalink
JDK 24 build fixes
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 committed Dec 16, 2024
1 parent d138a3e commit ed4a3a3
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 byte[]}
* {@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 byte[]}
* {@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 byte[]}
* 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 byte[]}
* Create an instance of {@code JAXBElement<byte[]>}
*
*/
@XmlElementDecl(namespace = "", name = "e2", scope = Foo.class)
Expand Down

0 comments on commit ed4a3a3

Please sign in to comment.