Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

fix for NPE in TDBatcher #66

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -72,7 +72,9 @@ public void queueObject(T object) {
public void flush() {
synchronized(this) {
if(inbox != null) {
handler.removeCallbacks(processNowRunnable);
if (handler != null) {
handler.removeCallbacks(processNowRunnable);
}
processNow();
}
}
Expand Down