aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java
diff options
context:
space:
mode:
authorLyubomir Marinov <lyubomir.marinov@jitsi.org>2013-05-23 18:50:35 +0300
committerLyubomir Marinov <lyubomir.marinov@jitsi.org>2013-05-23 18:50:35 +0300
commitb211c26d6c8f51a75d3b64b6092284c3847a3a8a (patch)
treea51b7d816a27f8db492cf9c44f998e2da8176635 /src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java
parent24e81b82808681c6b5741b14048ef58c4e665e37 (diff)
downloadjitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.zip
jitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.tar.gz
jitsi-b211c26d6c8f51a75d3b64b6092284c3847a3a8a.tar.bz2
Fixes warnings, removes trailing whitespace, adds @Override annotations.
Diffstat (limited to 'src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java')
-rw-r--r--src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java b/src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java
index 120ee2e..9cd52ab 100644
--- a/src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java
+++ b/src/net/java/sip/communicator/impl/gui/main/call/OneToOneCallPeerPanel.java
@@ -511,7 +511,7 @@ public class OneToOneCallPeerPanel
* Releases the resources acquired by this instance which require explicit
* disposal (e.g. any listeners added to the depicted <tt>CallPeer</tt>.
* Invoked by <tt>OneToOneCallPanel</tt> when it determines that this
- * <tt>OneToOneCallPeerPanel</tt> is no longer necessary.
+ * <tt>OneToOneCallPeerPanel</tt> is no longer necessary.
*/
public void dispose()
{
@@ -606,6 +606,7 @@ public class OneToOneCallPeerPanel
/**
* Invoked when a mouse button has been pressed on a component.
*/
+ @Override
public void mousePressed(MouseEvent e)
{
CallPeerSecurityStatusEvent securityEvt
@@ -880,7 +881,7 @@ public class OneToOneCallPeerPanel
// Don't show panel if user does not care about security at all.
if (srtpControl instanceof ZrtpControl
&& !isSecurityLowPriority
- && (!((ZrtpControl) srtpControl).isSecurityVerified()
+ && (!((ZrtpControl) srtpControl).isSecurityVerified()
|| ((ZrtpSecurityPanel) securityPanel).isZidAorMismatch()))
{
setSecurityPanelVisible(true);
@@ -1249,6 +1250,7 @@ public class OneToOneCallPeerPanel
/**
* Invoked when the component's size changes.
*/
+ @Override
public void componentResized(ComponentEvent e)
{
if (glassPane.isVisible())
@@ -1342,7 +1344,7 @@ public class OneToOneCallPeerPanel
* this instance is to continue being the user interface, then
* we should probably pick up the remote video which is
* generated by the remote peer and not one of its
- * ConferenceMembers.
+ * ConferenceMembers.
*/
remoteVideo = remoteVideos.get(0);
}