ConcurrentModificationException is a significant thing...

This commit is contained in:
minjaesong
2021-11-06 13:41:16 +09:00
parent 7503876d1f
commit 16272e76f6

View File

@@ -5,6 +5,8 @@ import com.badlogic.gdx.Input
import net.torvald.terrarum.App import net.torvald.terrarum.App
/** /**
* BIG WARNING SIGN: since the strober will run on separate thread, ALWAYS BEWARE OF THE [ConcurrentModificationException]!
*
* Created by minjaesong on 2021-11-06. * Created by minjaesong on 2021-11-06.
*/ */
object InputStrober { object InputStrober {
@@ -26,7 +28,7 @@ object InputStrober {
} } } }
init { init {
println("InputStrobe start") // println("InputStrobe start")
thread.start() thread.start()
} }