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

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
geeksville committed May 15, 2020
1 parent b53b7f9 commit 8ccbd0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SyncContinuation<T> : Continuation<T> {
}

// Wait for the result (or throw an exception)
fun await(timeoutMsecs: Long = -1): T { // FIXME, support timeouts
fun await(timeoutMsecs: Long = -1): T {
synchronized(mbox) {
val startT = System.currentTimeMillis()
while (result == null) {
Expand Down

0 comments on commit 8ccbd0b

Please sign in to comment.