From a6b436beb62b52854afd43e7efff9143b8751f39 Mon Sep 17 00:00:00 2001 From: benni Date: Sun, 28 Oct 2012 09:27:04 +0100 Subject: [PATCH] corrected sampe code in documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }