You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mb...@apache.org on 2021/05/27 18:08:34 UTC

[db-jdo] branch master updated: JDO-794: Remove @Persistent field annotation in PCRectStringAnnotated

This is an automated email from the ASF dual-hosted git repository.

mbo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/db-jdo.git


The following commit(s) were added to refs/heads/master by this push:
     new 4397e08  JDO-794: Remove @Persistent field annotation in PCRectStringAnnotated
4397e08 is described below

commit 4397e089cd507ec705df8019ae8d567b1582720e
Author: Michael Bouschen <mb...@apache.org>
AuthorDate: Thu May 27 20:08:24 2021 +0200

    JDO-794: Remove @Persistent field annotation in PCRectStringAnnotated
---
 tck/pom.xml                                                             | 2 +-
 .../main/java/org/apache/jdo/tck/pc/mylib/PCRectStringAnnotated.java    | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/tck/pom.xml b/tck/pom.xml
index 0dfa0e2..4dc5e0e 100644
--- a/tck/pom.xml
+++ b/tck/pom.xml
@@ -203,7 +203,7 @@
                 <dependency>
                     <groupId>org.datanucleus</groupId>
                     <artifactId>datanucleus-api-jdo</artifactId>
-                    <version>5.2.6</version>
+                    <version>5.2.7</version>
                 </dependency>
                 <dependency>
                     <groupId>org.datanucleus</groupId>
diff --git a/tck/src/main/java/org/apache/jdo/tck/pc/mylib/PCRectStringAnnotated.java b/tck/src/main/java/org/apache/jdo/tck/pc/mylib/PCRectStringAnnotated.java
index ec177c1..ec627b0 100644
--- a/tck/src/main/java/org/apache/jdo/tck/pc/mylib/PCRectStringAnnotated.java
+++ b/tck/src/main/java/org/apache/jdo/tck/pc/mylib/PCRectStringAnnotated.java
@@ -39,12 +39,10 @@ public class PCRectStringAnnotated implements IPCRect {
     @Column(name="ID")
     private long id = newId();
 
-    @Persistent
     @Column(name="UPPER_LEFT")
     @Convert(value = PointToStringConverter.class)
     private Point upperLeft;
 
-    @Persistent
     @Column(name="LOWER_RIGHT")
     @Convert(value = PointToStringConverter.class)
     private Point lowerRight;