Skip to content

Commit 7112ea7

Browse files
committed
Update to java 21
1 parent 3ecb0ce commit 7112ea7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

documentation/modules/ROOT/pages/inventory-quarkus.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,13 +313,13 @@ import jakarta.persistence.Table;
313313
import jakarta.persistence.Column;
314314
import java.io.Serializable;
315315
316-
@Entity
317-
@Table(name = "INVENTORY")
316+
@Entity // <1>
317+
@Table(name = "INVENTORY") // <2>
318318
public class Inventory implements Serializable {
319319
320320
private static final long serialVersionUID = 1L;
321321
322-
@Id
322+
@Id // <3>
323323
private String itemId;
324324
325325
@Column

0 commit comments

Comments
 (0)