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 2022/08/13 19:35:43 UTC

[db-jdo] 04/07: JDO-817 removing compiler warnings: "raw use of parameterized class" in api submodule

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

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

commit 7ca32adb859ddf6d1247086f987cf0d943f75b47
Author: Michael Bouschen <Mi...@akquinet.de>
AuthorDate: Sat Aug 13 20:56:01 2022 +0200

    JDO-817 removing compiler warnings: "raw use of parameterized class" in api submodule
---
 api/src/test/java/javax/jdo/stub/StubPMF.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/src/test/java/javax/jdo/stub/StubPMF.java b/api/src/test/java/javax/jdo/stub/StubPMF.java
index f45ec139..dadfbc7e 100644
--- a/api/src/test/java/javax/jdo/stub/StubPMF.java
+++ b/api/src/test/java/javax/jdo/stub/StubPMF.java
@@ -405,7 +405,7 @@ public class StubPMF implements PersistenceManagerFactory, Constants {
     }
 
     @SuppressWarnings("rawtypes")
-    public Set getFetchGroups() {
+    public Set<FetchGroup> getFetchGroups() {
         throw new UnsupportedOperationException("not implemented");
     }