diff --git a/README.md b/README.md index 28f0bd4..9c7096d 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Listener definition (in any bean): // this handler will receive events of type SubTestEvent // or any subtabe and that passes the given filter(s) - @Listener({@Filter(value = SpecialEventsOnly.class),@Filter(value = SpecialEventsOnly.class)}) + @Listener({@Filter(SpecialEventsOnly.class),@Filter(SpecialEventsOnly.class)}) public void handleFiltered(SubTestEvent event) { //do something special here }