Fix issue where the sources would not be updated

Signed-off-by: Taylor Smock <tsmock@meta.com>
pull/45/head
Taylor Smock 2024-01-16 14:45:40 -07:00
rodzic ca0b8e479f
commit faa031e49c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 3D4E7B422350E843
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -213,8 +213,11 @@ public class MapWithAILayerInfo {
if (this.finishListenerListenerList == null) {
this.finishListenerListenerList = ListenerList.create();
}
boolean running = this.finishListenerListenerList.hasListeners();
if (listener != null) {
this.finishListenerListenerList.addListener(listener);
}
if (running) {
return;
}
if (worker == null) {