diff options
author | Eduardo Julian | 2017-10-09 00:38:44 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-09 00:38:44 -0400 |
commit | 2b310f8ad1050774e5cc60839e56a042e27bf570 (patch) | |
tree | 9eadfa1e62507d54dd637c51be2c24198ec5a25b /luxc | |
parent | bf6acad37e74599a5b9091326f6f0ba33063b8b4 (diff) |
- Fixed a bug when serializing JVM types.
Diffstat (limited to '')
-rw-r--r-- | luxc/src/lux/type/host.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luxc/src/lux/type/host.clj b/luxc/src/lux/type/host.clj index 82f14812d..74ef262c6 100644 --- a/luxc/src/lux/type/host.clj +++ b/luxc/src/lux/type/host.clj @@ -137,7 +137,7 @@ "V") (instance? GenericArrayType refl-type) - (&host-generics/->type-signature (str refl-type)) + (str "[" (principal-class (.getGenericComponentType ^GenericArrayType refl-type))) (instance? ParameterizedType refl-type) (&host-generics/->type-signature (->> ^ParameterizedType refl-type ^Class (.getRawType) .getName)) |