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
1 changed files with 3 additions and 3 deletions

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);