You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/02/16 07:25:41 UTC

[isis-app-helloworld] branch jdo updated: framework packages had been renamed

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

ahuber pushed a commit to branch jdo
in repository https://gitbox.apache.org/repos/asf/isis-app-helloworld.git


The following commit(s) were added to refs/heads/jdo by this push:
     new 02d3c96  framework packages had been renamed
02d3c96 is described below

commit 02d3c9625a631a92a1aadbd2de78601252ab4c24
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Feb 16 08:25:31 2021 +0100

    framework packages had been renamed
---
 src/main/java/domainapp/modules/hello/dom/hwo/HelloWorldObjects.java    | 2 +-
 .../java/domainapp/modules/hello/dom/hwo/HellWorldObjects_Test.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/domainapp/modules/hello/dom/hwo/HelloWorldObjects.java b/src/main/java/domainapp/modules/hello/dom/hwo/HelloWorldObjects.java
index b9a4fb4..b19417f 100644
--- a/src/main/java/domainapp/modules/hello/dom/hwo/HelloWorldObjects.java
+++ b/src/main/java/domainapp/modules/hello/dom/hwo/HelloWorldObjects.java
@@ -12,7 +12,7 @@ import org.apache.isis.applib.annotation.PromptStyle;
 import org.apache.isis.applib.annotation.RestrictTo;
 import org.apache.isis.applib.annotation.SemanticsOf;
 import org.apache.isis.applib.services.repository.RepositoryService;
-import org.apache.isis.persistence.jdo.applib.integration.JdoSupportService;
+import org.apache.isis.persistence.jdo.applib.services.JdoSupportService;
 
 import domainapp.modules.hello.types.Name;
 
diff --git a/src/test/java/domainapp/modules/hello/dom/hwo/HellWorldObjects_Test.java b/src/test/java/domainapp/modules/hello/dom/hwo/HellWorldObjects_Test.java
index 2858841..0048143 100644
--- a/src/test/java/domainapp/modules/hello/dom/hwo/HellWorldObjects_Test.java
+++ b/src/test/java/domainapp/modules/hello/dom/hwo/HellWorldObjects_Test.java
@@ -18,7 +18,7 @@ import static org.mockito.ArgumentMatchers.argThat;
 import static org.mockito.Mockito.when;
 
 import org.apache.isis.applib.services.repository.RepositoryService;
-import org.apache.isis.persistence.jdo.applib.integration.JdoSupportService;
+import org.apache.isis.persistence.jdo.applib.services.JdoSupportService;
 
 @ExtendWith(MockitoExtension.class)
 class HellWorldObjects_Test {