diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2013-02-26 20:47:56 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2013-02-26 20:47:56 +0000 |
commit | c85ca6ca0c6b2bcf7c0a4582a25da14d163a6f69 (patch) | |
tree | 8f4e80ebac65c0a574f05d09ac9b67639d746f8b /test/net/java/sip/communicator/slick/protocol | |
parent | 2510f1d11c5cb236d9e9442830ea242094e90d73 (diff) | |
download | jitsi-c85ca6ca0c6b2bcf7c0a4582a25da14d163a6f69.zip jitsi-c85ca6ca0c6b2bcf7c0a4582a25da14d163a6f69.tar.gz jitsi-c85ca6ca0c6b2bcf7c0a4582a25da14d163a6f69.tar.bz2 |
Works on preventing an issue with the display of remote video which could scale it down to a tiny number of pixels. Fixes multiple technical/programming errors, warnings, javadocs.
Diffstat (limited to 'test/net/java/sip/communicator/slick/protocol')
3 files changed, 6 insertions, 6 deletions
diff --git a/test/net/java/sip/communicator/slick/protocol/gibberish/TestOperationSetPersistentPresence.java b/test/net/java/sip/communicator/slick/protocol/gibberish/TestOperationSetPersistentPresence.java index bf9aa9f..806e3c3 100644 --- a/test/net/java/sip/communicator/slick/protocol/gibberish/TestOperationSetPersistentPresence.java +++ b/test/net/java/sip/communicator/slick/protocol/gibberish/TestOperationSetPersistentPresence.java @@ -564,9 +564,9 @@ public class TestOperationSetPersistentPresence /** * Blocks until at least one event is received or until waitFor - * miliseconds pass (whicever happens first). + * milliseconds pass (whichever happens first). * - * @param waitFor the number of miliseconds that we should be waiting + * @param waitFor the number of milliseconds that we should be waiting * for an event before simply bailing out. */ public void waitForEvent(long waitFor) diff --git a/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat.java b/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat.java index 7fb9355..649e570 100644 --- a/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat.java +++ b/test/net/java/sip/communicator/slick/protocol/jabber/TestOperationSetMultiUserChat.java @@ -330,8 +330,8 @@ public class TestOperationSetMultiUserChat public void memberPresenceChanged( ChatRoomMemberPresenceChangeEvent evt) { - synchronized(this) - { +// synchronized(this) +// { // logger.debug( // "Collected evt("+collectedEvents.size()+")= "+event); // @@ -340,7 +340,7 @@ public class TestOperationSetMultiUserChat // this.collectedEvents.add(event); // notifyAll(); // } - } +// } } diff --git a/test/net/java/sip/communicator/slick/protocol/yahoo/TestOperationSetPresence.java b/test/net/java/sip/communicator/slick/protocol/yahoo/TestOperationSetPresence.java index 029e3d1..ef05fa9 100644 --- a/test/net/java/sip/communicator/slick/protocol/yahoo/TestOperationSetPresence.java +++ b/test/net/java/sip/communicator/slick/protocol/yahoo/TestOperationSetPresence.java @@ -930,7 +930,7 @@ public class TestOperationSetPresence // try{ // opset.subscribe(sourceContact.getAddress()); // }catch(Exception ex){} - + return new AuthorizationResponse(AuthorizationResponse.ACCEPT, ""); } |