File tree 2 files changed +4
-2
lines changed
src/main/clojure/clojure/core/async/impl
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,8 @@ Copyright © Rich Hickey and contributors
65
65
66
66
## Changelog
67
67
68
+ * next
69
+ * Fix reflection warnings when using ` clojure.core.async.go-checking `
68
70
* Release 1.8.730 on 2025.04.02, effective changes since last non-beta release:
69
71
* [ ASYNC-256] ( https://clojure.atlassian.net/browse/ASYNC-256 ) (CLJ) Add ` io-thread ` and System property ` clojure.core.async.executor-factory `
70
72
* [ ASYNC-260] ( https://clojure.atlassian.net/browse/ASYNC-260 ) (CLJ) Remove now unused property ` clojure.core.async.pool-size `
Original file line number Diff line number Diff line change 43
43
[& body]
44
44
(if (Boolean/getBoolean " clojure.core.async.go-checking" )
45
45
`(try
46
- (.set in-go-dispatch true )
46
+ (.set ^ThreadLocal in-go-dispatch true )
47
47
~@body
48
48
(finally
49
- (.set in-go-dispatch false )))
49
+ (.set ^ThreadLocal in-go-dispatch false )))
50
50
`(do ~@body)))
51
51
52
52
(defn in-dispatch-thread?
You can’t perform that action at this time.
0 commit comments