<@U2E974ELT> Thanks. for java code ``` boolea...
# eap
j
@elizarov Thanks. for java code
Copy code
boolean b = false;
    new Thread(() -> b = true).start();
Idea would suggest changeing
b
to a final boolean array:
Copy code
final boolean[] b = {false};
    new Thread(() -> b[0] = true).start();
so this is not guaranteed to work either?