You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2018/11/23 13:19:18 UTC

[isis] 01/02: ISIS-2043: removes accidentally committed test class

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

danhaywood pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git

commit e85504a28e2e3da3fb49cfefff8bb3327d7d21e0
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Nov 23 13:13:42 2018 +0000

    ISIS-2043: removes accidentally committed test class
---
 .../src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc   | 3 ++-
 .../domainapp/modules/simple/subscribers/SimpleObjectListener.java    | 4 ----
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc b/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc
index 85e528c..b94f991 100644
--- a/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc
+++ b/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc
@@ -79,7 +79,8 @@ or can be fine-grained (by subscribing to specific event subtypes):
 @DomainService(nature=NatureOfService.DOMAIN)
 public class SomeSubscriber extends AbstractSubscriber {
     @org.axonframework.eventhandling.annotation.EventHandler // if using axon
-    @com.google.common.eventbus.Subscribe                     public void on(ToDoItem.DueByChangedEvent ev) {
+    @com.google.common.eventbus.Subscribe                    // if using guava
+    public void on(ToDoItem.DueByChangedEvent ev) {
         ...
     }
 }
diff --git a/example/application/simpleapp/module-simple/src/main/java/domainapp/modules/simple/subscribers/SimpleObjectListener.java b/example/application/simpleapp/module-simple/src/main/java/domainapp/modules/simple/subscribers/SimpleObjectListener.java
deleted file mode 100644
index c377c55..0000000
--- a/example/application/simpleapp/module-simple/src/main/java/domainapp/modules/simple/subscribers/SimpleObjectListener.java
+++ /dev/null
@@ -1,4 +0,0 @@
-package domainapp.modules.simple.subscribers;
-
-public class SimpleObjectListener {
-}