aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2008-08-29 23:20:37 +0000
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2008-08-29 23:20:37 +0000
commite2ba282340ba024598f9d583ed67c8f52285103c (patch)
tree3333f0d2077850a20e866fd2dc9392634c8a32a8 /src
parentf36da957c5ea4bbdf92993bb674c6b461f94773b (diff)
downloadjitsi-e2ba282340ba024598f9d583ed67c8f52285103c.zip
jitsi-e2ba282340ba024598f9d583ed67c8f52285103c.tar.gz
jitsi-e2ba282340ba024598f9d583ed67c8f52285103c.tar.bz2
Applies a patch by Sébastien Mazy which fixes a typo in .impl.notification.NotificationServiceImpl - replaces isDeafult with isDefault.
Diffstat (limited to 'src')
-rw-r--r--src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java b/src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java
index cad55c8..b7e2b60 100644
--- a/src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java
+++ b/src/net/java/sip/communicator/impl/notification/NotificationServiceImpl.java
@@ -839,7 +839,7 @@ public class NotificationServiceImpl
}
}
- private boolean isDeafult(String eventType, String actionType)
+ private boolean isDefault(String eventType, String actionType)
{
List eventTypes = configService
.getPropertyNamesByPrefix(NOTIFICATIONS_PREFIX, true);
@@ -906,7 +906,7 @@ public class NotificationServiceImpl
NotificationActionHandler handler)
throws IllegalArgumentException
{
- if(isDeafult(eventType, actionType))
+ if(isDefault(eventType, actionType))
{
NotificationActionHandler h =
getEventNotificationActionHandler(eventType, actionType);
@@ -995,7 +995,7 @@ public class NotificationServiceImpl
logger.debug("Registering default event " + eventType + "/" +
actionType + "/" + actionDescriptor + "/" + defaultMessage);
- if(isDeafult(eventType, actionType))
+ if(isDefault(eventType, actionType))
{
NotificationActionHandler handler =
getEventNotificationActionHandler(eventType, actionType);