aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEduardo Julian2015-09-28 22:25:32 -0400
committerEduardo Julian2015-09-28 22:25:32 -0400
commitf5c046279de3c28e3d83dda116f2b3742766a93b (patch)
treeb95cf9fdea61c0716906078edc4232d720c356cd /source
parent968eb87adef6d62803543adf2ec51049527ccb33 (diff)
- Removed reflection warnings.
- Made some improvements to working with object arrays.
Diffstat (limited to '')
-rw-r--r--source/lux/host/jvm.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lux/host/jvm.lux b/source/lux/host/jvm.lux
index cb818eb2b..573e181b5 100644
--- a/source/lux/host/jvm.lux
+++ b/source/lux/host/jvm.lux
@@ -246,7 +246,7 @@
(|> idxs
(map (: (-> Int Text)
(lambda [idx]
- (_jvm_invokevirtual "java.lang.Object" "toString" [] (_jvm_aaload "java.lang.StackTraceElement" trace idx) []))))
+ (_jvm_invokevirtual "java.lang.Object" "toString" [] (_jvm_aaload trace idx) []))))
(interpose "\n")
(foldL text:++ "")
)))