From: Matt Corallo Date: Wed, 13 Mar 2024 14:56:08 +0000 (+0000) Subject: [C#] Very marginally clean up get_java_arr_elem conditionals X-Git-Tag: v0.0.121.3~4^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=commitdiff_plain;h=10dd56344c75a6fdfe108963f99afdc911eaf8d3 [C#] Very marginally clean up get_java_arr_elem conditionals --- diff --git a/csharp_strings.py b/csharp_strings.py index e1c2708e..a73ee203 100644 --- a/csharp_strings.py +++ b/csharp_strings.py @@ -576,12 +576,12 @@ int CS_LDK_register_{fn_suffix}_invoker(invoker_{fn_suffix} invoker) {{ return "InternalUtils.getArrayLength(" + arr_name + ")" def get_java_arr_elem(self, elem_ty, arr_name, idx): - if elem_ty.c_ty == "int64_t" or elem_ty.c_ty == "uint64_t" or elem_ty.c_ty.endswith("Array") or elem_ty.c_ty == "uintptr_t": + if elem_ty.c_ty == "int64_t" or elem_ty.c_ty == "uint64_t": + return "InternalUtils.getU64ArrayElem(" + arr_name + ", " + idx + ")" + elif elem_ty.c_ty.endswith("Array") or elem_ty.c_ty == "uintptr_t" or elem_ty.rust_obj == "LDKStr": return "InternalUtils.getU64ArrayElem(" + arr_name + ", " + idx + ")" elif elem_ty.rust_obj == "LDKU5": return "InternalUtils.getU8ArrayElem(" + arr_name + ", " + idx + ")" - elif elem_ty.rust_obj == "LDKStr": - return "InternalUtils.getU64ArrayElem(" + arr_name + ", " + idx + ")" else: assert False