1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-12 14:44:56 +02:00

Call schedule() instead of directly invoking the scheduled executor

in AbstractXMPPConnection.
This commit is contained in:
Florian Schmaus 2018-02-23 18:50:02 +01:00
parent 3bdeca44f2
commit c90607d7db

View file

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