aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/concurrency/process.lux
diff options
context:
space:
mode:
authorEduardo Julian2020-10-09 23:11:38 -0400
committerEduardo Julian2020-10-09 23:11:38 -0400
commitbefa21cea76282f8cd3509e0a7da1bdffd353101 (patch)
tree9f671c8a86ca43bcccb8105a668a271e72ef06ea /stdlib/source/lux/control/concurrency/process.lux
parentbae39f32cddb816a6123697269c20dbf4a65ac19 (diff)
Mandatory long names for JVM imports, instead of having "long" be optional and short be default.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/concurrency/process.lux28
1 files changed, 14 insertions, 14 deletions
diff --git a/stdlib/source/lux/control/concurrency/process.lux b/stdlib/source/lux/control/concurrency/process.lux
index afd24bb5c..7a4c46856 100644
--- a/stdlib/source/lux/control/concurrency/process.lux
+++ b/stdlib/source/lux/control/concurrency/process.lux
@@ -16,44 +16,44 @@
["." atom (#+ Atom)]])
(for {@.old
- (as-is (host.import: #long java/lang/Object)
+ (as-is (host.import: java/lang/Object)
- (host.import: #long java/lang/Runtime
+ (host.import: java/lang/Runtime
(#static getRuntime [] java/lang/Runtime)
(availableProcessors [] int))
- (host.import: #long java/lang/Runnable)
+ (host.import: java/lang/Runnable)
- (host.import: #long java/util/concurrent/TimeUnit
+ (host.import: java/util/concurrent/TimeUnit
(#enum MILLISECONDS))
- (host.import: #long java/util/concurrent/Executor
+ (host.import: java/util/concurrent/Executor
(execute [java/lang/Runnable] #io void))
- (host.import: #long (java/util/concurrent/ScheduledFuture a))
+ (host.import: (java/util/concurrent/ScheduledFuture a))
- (host.import: #long java/util/concurrent/ScheduledThreadPoolExecutor
+ (host.import: java/util/concurrent/ScheduledThreadPoolExecutor
(new [int])
(schedule [java/lang/Runnable long java/util/concurrent/TimeUnit] #io (java/util/concurrent/ScheduledFuture java/lang/Object))))
@.jvm
- (as-is (host.import: #long java/lang/Object)
+ (as-is (host.import: java/lang/Object)
- (host.import: #long java/lang/Runtime
+ (host.import: java/lang/Runtime
(#static getRuntime [] java/lang/Runtime)
(availableProcessors [] int))
- (host.import: #long java/lang/Runnable)
+ (host.import: java/lang/Runnable)
- (host.import: #long java/util/concurrent/TimeUnit
+ (host.import: java/util/concurrent/TimeUnit
(#enum MILLISECONDS))
- (host.import: #long java/util/concurrent/Executor
+ (host.import: java/util/concurrent/Executor
(execute [java/lang/Runnable] #io void))
- (host.import: #long (java/util/concurrent/ScheduledFuture a))
+ (host.import: (java/util/concurrent/ScheduledFuture a))
- (host.import: #long java/util/concurrent/ScheduledThreadPoolExecutor
+ (host.import: java/util/concurrent/ScheduledThreadPoolExecutor
(new [int])
(schedule [java/lang/Runnable long java/util/concurrent/TimeUnit] #io (java/util/concurrent/ScheduledFuture java/lang/Object))))