git://git.nikiroo.be
/
fanfix-jexer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a2855f1
)
#31 fix synchronized error
author
Kevin Lamonte
<kevin.lamonte@gmail.com>
Sat, 7 Apr 2018 16:39:25 +0000
(12:39 -0400)
committer
Kevin Lamonte
<kevin.lamonte@gmail.com>
Sat, 7 Apr 2018 16:39:25 +0000
(12:39 -0400)
src/jexer/TApplication.java
patch
|
blob
|
blame
|
history
diff --git
a/src/jexer/TApplication.java
b/src/jexer/TApplication.java
index 34f1559007090b31eef65a4d79be9288ed54dec7..9fa64d0703ae5d973453db0abb998661eb76fe20 100644
(file)
--- a/
src/jexer/TApplication.java
+++ b/
src/jexer/TApplication.java
@@
-1205,7
+1205,8
@@
public class TApplication implements Runnable {
keepTimers.add(timer);
}
}
- timers = keepTimers;
+ timers.clear();
+ timers.addAll(keepTimers);
}
// Call onIdle's