Call schedule() instead of directly invoking the scheduled executor

in AbstractXMPPConnection.
This commit is contained in:
Florian Schmaus 2018-02-25 11:29:39 +01:00
parent 72a2014572
commit cd05d5f5d8
1 changed files with 2 additions and 2 deletions

View File

@ -1546,7 +1546,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
}
}
};
removeCallbacksService.schedule(new Runnable() {
schedule(new Runnable() {
@Override
public void run() {
boolean removed = removeAsyncStanzaListener(packetListener);
@ -1601,7 +1601,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
}
};
addSyncStanzaListener(packetListener, packetFilter);
removeCallbacksService.schedule(new Runnable() {
schedule(new Runnable() {
@Override
public void run() {
removeSyncStanzaListener(packetListener);