Skip to content
Snippets Groups Projects
Commit 69947ffd authored by Petr Bainar's avatar Petr Bainar
Browse files

miscStuffExtended: address PR comments #3

parent b060bf03
No related branches found
No related tags found
1 merge request!31Misc stuff extended
......@@ -95,6 +95,7 @@ class HaasOutputObservableValueRegistry implements Closeable {
private void stopTimer() {
if (timer != null) {
timer.cancel();
timer = null;
isRunning = false;
}
}
......
......@@ -30,7 +30,7 @@ class TaskObservableValueRegistry implements Closeable {
closed = true;
}
public synchronized SimpleObservableList<Task> getTaskList() {
public SimpleObservableList<Task> getTaskList() {
return observableTaskList;
}
......@@ -72,6 +72,7 @@ class TaskObservableValueRegistry implements Closeable {
private void stopTimer() {
if (timer != null) {
timer.cancel();
timer = null;
isRunning = false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment