You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@causeway.apache.org by da...@apache.org on 2023/03/16 22:52:50 UTC

[causeway] branch master updated: adds missing import

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

danhaywood 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 d8f7cf86c3 adds missing import
d8f7cf86c3 is described below

commit d8f7cf86c3a16cb0e8fa711b35cc186b301a6b51
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Thu Mar 16 22:52:40 2023 +0000

    adds missing import
---
 .../services/core/eventbusservice/EventSubscriberDemoImplementation.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/examples/demo/domain/src/main/java/demoapp/dom/services/core/eventbusservice/EventSubscriberDemoImplementation.java b/examples/demo/domain/src/main/java/demoapp/dom/services/core/eventbusservice/EventSubscriberDemoImplementation.java
index bd802934b9..67096c3114 100644
--- a/examples/demo/domain/src/main/java/demoapp/dom/services/core/eventbusservice/EventSubscriberDemoImplementation.java
+++ b/examples/demo/domain/src/main/java/demoapp/dom/services/core/eventbusservice/EventSubscriberDemoImplementation.java
@@ -24,6 +24,7 @@ import javax.inject.Inject;
 import javax.inject.Named;
 
 import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.context.annotation.Scope;
 import org.springframework.context.event.EventListener;
 import org.springframework.stereotype.Service;