diff --git a/dev/com.ibm.ws.jpa.tests.jpa_32_fat/test-applications/jakartadata/src/io/openliberty/jpa/data/tests/models/Segment.java b/dev/com.ibm.ws.jpa.tests.jpa_32_fat/test-applications/jakartadata/src/io/openliberty/jpa/data/tests/models/Segment.java index 943cc5d97b18..202ad4c0e708 100644 --- a/dev/com.ibm.ws.jpa.tests.jpa_32_fat/test-applications/jakartadata/src/io/openliberty/jpa/data/tests/models/Segment.java +++ b/dev/com.ibm.ws.jpa.tests.jpa_32_fat/test-applications/jakartadata/src/io/openliberty/jpa/data/tests/models/Segment.java @@ -18,10 +18,6 @@ /** * Recreate from io.openliberty.data.internal_fat_jpa - * - * The problem here is with the entity itself - * TODO: uncomment @Entity - * TODO: remove constructor from Point */ @Entity public class Segment { @@ -40,14 +36,7 @@ public class Segment { @Embeddable public static record Point(int x, int y) { - /** - * Recreate - * Exception Description: The instance creation method [io.openliberty.jpa.data.tests.models.Segment$Point.<Default Constructor>], - * with no parameters, does not exist, or is not accessible. - */ - public Point() { - this(0, 0); - } + } public static Segment of(int x1, int y1, int x2, int y2) {