Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing imports for classes used in type hints #152

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/promesa/exec/bulkhead.clj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
java.util.concurrent.Executor
java.util.concurrent.LinkedBlockingQueue
java.util.concurrent.Semaphore
java.util.concurrent.atomic.AtomicLong))
java.util.concurrent.atomic.AtomicLong
java.util.function.Supplier))

(set! *warn-on-reflection* true)
;; (set! *unchecked-math* :warn-on-boxed)
Expand Down
2 changes: 2 additions & 0 deletions src/promesa/impl.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
java.util.concurrent.Future
java.util.concurrent.TimeUnit
java.util.concurrent.TimeoutException
java.util.function.BiConsumer
java.util.function.BiFunction
java.util.function.Function
java.util.function.Supplier)))

Expand Down