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 2023/01/08 18:04:00 UTC

[db-jdo] 02/18: JDO-823: Child class fields should not shadow parent class fields

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

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

commit 77f2c6eaf7e02d95ba164c7eb6a95ba05c28c190
Author: Michael Bouschen <Mi...@akquinet.de>
AuthorDate: Sat Jan 7 20:33:09 2023 +0100

    JDO-823: Child class fields should not shadow parent class fields
---
 exectck/src/main/java/org/apache/jdo/exectck/Enhance.java | 10 ----------
 exectck/src/main/java/org/apache/jdo/exectck/RunTCK.java  |  7 -------
 2 files changed, 17 deletions(-)

diff --git a/exectck/src/main/java/org/apache/jdo/exectck/Enhance.java b/exectck/src/main/java/org/apache/jdo/exectck/Enhance.java
index 3fd8a2f3..a76a509a 100644
--- a/exectck/src/main/java/org/apache/jdo/exectck/Enhance.java
+++ b/exectck/src/main/java/org/apache/jdo/exectck/Enhance.java
@@ -24,7 +24,6 @@ import java.net.URL;
 import java.net.URLClassLoader;
 import java.nio.charset.Charset;
 import java.util.ArrayList;
-import java.util.Collection;
 import java.util.HashSet;
 import java.util.Iterator;
 import java.util.logging.Level;
@@ -86,15 +85,6 @@ public class Enhance extends AbstractTCKMojo {
       required = true)
   private String srcDirectory;
 
-  /** List of identity types to be tested. */
-  @Parameter(
-      property = "jdo.tck.identitytypes",
-      defaultValue = "applicationidentity datastoreidentity",
-      required = true)
-  private String identitytypes;
-
-  private Collection<String> idtypes;
-
   @Override
   public void execute() throws MojoExecutionException, MojoFailureException {
 
diff --git a/exectck/src/main/java/org/apache/jdo/exectck/RunTCK.java b/exectck/src/main/java/org/apache/jdo/exectck/RunTCK.java
index 3d066f1e..551945f1 100644
--- a/exectck/src/main/java/org/apache/jdo/exectck/RunTCK.java
+++ b/exectck/src/main/java/org/apache/jdo/exectck/RunTCK.java
@@ -74,13 +74,6 @@ public class RunTCK extends AbstractTCKMojo {
   @Parameter(property = "jdo.tck.skipJndi", defaultValue = "false", required = true)
   private boolean skipJndi;
 
-  /** Location of implementation log file. */
-  @Parameter(
-      property = "jdo.tck.impl.logfile",
-      defaultValue = "${user.dir}/datanucleus.txt",
-      required = true)
-  private String implLogFile;
-
   /** Name of file in src/conf containing pmf properties. */
   @Parameter(property = "jdo.tck.pmfproperties", defaultValue = "jdori-pmf.properties")
   private String pmfProperties;