1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-26 21:44:52 +02: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:
Gaston Dombiak 2004-07-16 21:00:07 +00:00 committed by gdombiak
parent d53f0e9492
commit f7ccbe1421

View file

@ -2118,7 +2118,9 @@ public class MultiUserChat {
}
}
public void finalize() {
public void finalize() throws Throwable {
super.finalize();
try {
if (connection != null) {
messageCollector.cancel();
connection.removePacketListener(subjectListener);
@ -2126,6 +2128,8 @@ public class MultiUserChat {
connection.removePacketListener(declinesListener);
}
}
catch (Exception e) {}
}
/**
* An InvitationsMonitor monitors a given connection to detect room invitations. Every