X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=genbindings.py;h=1ac132ad9e1b3d21b0b0a824ed2f4ea892155acd;hb=271f5c2d87e62896da5d27b5b9b81d898df90038;hp=06827cf02b5abb93fe254d4a0c3dffa2ad67517e;hpb=153c5653d39ca5dc40e4cd9bfbab41936b850768;p=ldk-java diff --git a/genbindings.py b/genbindings.py index 06827cf0..1ac132ad 100755 --- a/genbindings.py +++ b/genbindings.py @@ -536,7 +536,7 @@ with open(sys.argv[1]) as in_h, open(f"{sys.argv[2]}/bindings{consts.file_ext}", or method_name.endswith("_read"))): out_java_struct = open(f"{sys.argv[3]}/structs/UtilMethods{consts.file_ext}", "a") for line in out_java_struct_delta.splitlines(): - if not line.strip().startswith("this."): + if "this" not in line: out_java_struct.write(line + "\n") else: out_java_struct.write("\t\t// " + line.strip() + "\n") @@ -703,6 +703,7 @@ with open(sys.argv[1]) as in_h, open(f"{sys.argv[2]}/bindings{consts.file_ext}", if check_sfx is not None: write_c("CHECK(" + check_sfx[0] + "owner" + check_sfx[1] + ");\n") write_c("\treturn " + accessor[0] + "owner" + accessor[1] + ";\n") + holds_ref = True else: fn_defn = ptr_fn_defn write_c("static inline " + fn_defn + "{\n")