aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2008-12-07 07:18:07 +0000
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2008-12-07 07:18:07 +0000
commita36ab57e97b1fd498185964a8d981f7c63f44454 (patch)
treeccaa03be6d5b2fa444635d818446cdc9c5d70e4e /src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java
parentf6148f576ce02edd5821c4f81a251e287b89ea27 (diff)
downloadjitsi-a36ab57e97b1fd498185964a8d981f7c63f44454.zip
jitsi-a36ab57e97b1fd498185964a8d981f7c63f44454.tar.gz
jitsi-a36ab57e97b1fd498185964a8d981f7c63f44454.tar.bz2
Fixes warnings.
Diffstat (limited to 'src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java')
-rw-r--r--src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java b/src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java
index 5b6497d..d6107bc 100644
--- a/src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java
+++ b/src/net/java/sip/communicator/service/protocol/event/CallReceivedEvent.java
@@ -4,7 +4,6 @@
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
-
package net.java.sip.communicator.service.protocol.event;
import java.util.*;
@@ -13,26 +12,19 @@ import net.java.sip.communicator.service.protocol.*;
/**
* A class representing the event of a call reception.
+ *
* @author Emil Ivov
*/
public class CallReceivedEvent
extends EventObject
{
- private Call call = null;
-
-
public CallReceivedEvent(Call call)
{
super(call);
}
- public CallParticipant getCallParticipant()
- {
- return (CallParticipant)getSource();
- }
-
public Call getCall()
{
- return (Call)getSource();
+ return (Call) getSource();
}
}