diff options
Diffstat (limited to 'luxc')
-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)) |