Replace sync block with sync method

in XMPPTCPConnection.
This commit is contained in:
Florian Schmaus 2014-04-23 09:43:22 +02:00
parent 5b8fd51345
commit 0996a44a61
1 changed files with 2 additions and 4 deletions

View File

@ -844,10 +844,8 @@ public class XMPPTCPConnection extends XMPPConnection {
* Notifies the XMPP connection that stream compression was denied so that
* the connection process can proceed.
*/
void streamCompressionDenied() {
synchronized (this) {
this.notify();
}
synchronized void streamCompressionDenied() {
this.notify();
}
/**