This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new 10f3474bd8 CAUSEWAY-2297: remove unused imports
10f3474bd8 is described below
commit 10f3474bd860b6e8c9553eb7c5227d03e24f712c
Author: Andi Huber <[email protected]>
AuthorDate: Thu Mar 14 17:10:51 2024 +0100
CAUSEWAY-2297: remove unused imports
---
.../graphql/viewer/test2/schema/PrintSchemaIntegTest.java | 15 +--------------
.../viewer/test2/schema/VerifySchemaIntegTest.java | 13 ++-----------
2 files changed, 3 insertions(+), 25 deletions(-)
diff --git
a/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/PrintSchemaIntegTest.java
b/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/PrintSchemaIntegTest.java
index f58d891fc2..28f979e593 100644
---
a/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/PrintSchemaIntegTest.java
+++
b/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/PrintSchemaIntegTest.java
@@ -18,19 +18,7 @@
*/
package org.apache.causeway.viewer.graphql.viewer.test2.schema;
-import graphql.schema.idl.SchemaPrinter;
-
-import lombok.val;
-
-import java.io.File;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-
-import
org.apache.causeway.persistence.jpa.eclipselink.CausewayModulePersistenceJpaEclipselink;
-
-import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
-import org.junit.jupiter.api.Test;
import org.springframework.context.annotation.Import;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
@@ -38,11 +26,10 @@ import
org.springframework.test.context.DynamicPropertyRegistry;
import org.springframework.test.context.DynamicPropertySource;
import org.apache.causeway.core.config.CausewayConfiguration;
+import
org.apache.causeway.persistence.jpa.eclipselink.CausewayModulePersistenceJpaEclipselink;
import org.apache.causeway.viewer.graphql.viewer.test2.domain.UniversityModule;
import
org.apache.causeway.viewer.graphql.viewer.testsupport.schema.PrintSchemaIntegTestAbstract;
-import static
org.apache.causeway.commons.internal.assertions._Assert.assertNotNull;
-
@Import({
UniversityModule.class,
CausewayModulePersistenceJpaEclipselink.class,
diff --git
a/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/VerifySchemaIntegTest.java
b/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/VerifySchemaIntegTest.java
index 4f5e619e1b..6f54c00463 100644
---
a/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/VerifySchemaIntegTest.java
+++
b/viewers/graphql/test2/src/test/java/org/apache/causeway/viewer/graphql/viewer/test2/schema/VerifySchemaIntegTest.java
@@ -20,16 +20,7 @@ package
org.apache.causeway.viewer.graphql.viewer.test2.schema;
import graphql.schema.idl.SchemaPrinter;
-import lombok.val;
-
-import java.io.File;
-import java.nio.file.Files;
-import java.nio.file.Paths;
-
-import org.apache.causeway.viewer.graphql.viewer.test2.e2e.Abstract_IntegTest;
-
import org.approvaltests.Approvals;
-import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
@@ -41,9 +32,9 @@ import org.springframework.test.context.DynamicPropertySource;
import org.apache.causeway.core.config.CausewayConfiguration;
import
org.apache.causeway.persistence.jpa.eclipselink.CausewayModulePersistenceJpaEclipselink;
import org.apache.causeway.viewer.graphql.viewer.test2.domain.UniversityModule;
-import
org.apache.causeway.viewer.graphql.viewer.testsupport.schema.PrintSchemaIntegTestAbstract;
+import org.apache.causeway.viewer.graphql.viewer.test2.e2e.Abstract_IntegTest;
-import static
org.apache.causeway.commons.internal.assertions._Assert.assertNotNull;
+import lombok.val;
@Import({
UniversityModule.class,