mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Makes finalize more secure.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2345 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
d53f0e9492
commit
f7ccbe1421
1 changed files with 10 additions and 6 deletions
|
@ -2118,13 +2118,17 @@ public class MultiUserChat {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void finalize() {
|
public void finalize() throws Throwable {
|
||||||
if (connection != null) {
|
super.finalize();
|
||||||
messageCollector.cancel();
|
try {
|
||||||
connection.removePacketListener(subjectListener);
|
if (connection != null) {
|
||||||
connection.removePacketListener(presenceListener);
|
messageCollector.cancel();
|
||||||
connection.removePacketListener(declinesListener);
|
connection.removePacketListener(subjectListener);
|
||||||
|
connection.removePacketListener(presenceListener);
|
||||||
|
connection.removePacketListener(declinesListener);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
catch (Exception e) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue