diff options
author | Damian Minkov <damencho@jitsi.org> | 2012-01-05 16:03:21 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2012-01-05 16:03:21 +0000 |
commit | 35aec78296289dde643f0b8e82d1bbf1949ced15 (patch) | |
tree | e0561032170df518873264f1106fd75c34f77b51 /src/net/java/sip/communicator/service | |
parent | 1b4e8b496111d176371c87803a7b490548f16409 (diff) | |
download | jitsi-35aec78296289dde643f0b8e82d1bbf1949ced15.zip jitsi-35aec78296289dde643f0b8e82d1bbf1949ced15.tar.gz jitsi-35aec78296289dde643f0b8e82d1bbf1949ced15.tar.bz2 |
Fixes a class cast exception with dns event fire.
Diffstat (limited to 'src/net/java/sip/communicator/service')
-rw-r--r-- | src/net/java/sip/communicator/service/sysactivity/event/SystemActivityEvent.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/sysactivity/event/SystemActivityEvent.java b/src/net/java/sip/communicator/service/sysactivity/event/SystemActivityEvent.java index a9fbcb4..c16cb73 100644 --- a/src/net/java/sip/communicator/service/sysactivity/event/SystemActivityEvent.java +++ b/src/net/java/sip/communicator/service/sysactivity/event/SystemActivityEvent.java @@ -108,4 +108,13 @@ public class SystemActivityEvent {
return this.eventID;
}
+
+ /**
+ * Returns a String representation of this SystemActivityEvent object.
+ *
+ * @return A a String representation of this SystemActivityEvent object.
+ */
+ public String toString() {
+ return getClass().getName() + "[eventID=" + eventID + "]";
+ }
}
|