X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FQueryShortChannelIds.java;h=2c9f57d7569d271ec4587ab7f32fc72484a16ad4;hb=fed2245c60159f6c074c9ed5c0f3ce273ad9841b;hp=c68d42091feb185c9e131198afef851a66945842;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/QueryShortChannelIds.java b/src/main/java/org/ldk/structs/QueryShortChannelIds.java index c68d4209..2c9f57d7 100644 --- a/src/main/java/org/ldk/structs/QueryShortChannelIds.java +++ b/src/main/java/org/ldk/structs/QueryShortChannelIds.java @@ -11,13 +11,13 @@ public class QueryShortChannelIds extends CommonBase { @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.QueryShortChannelIds_free(ptr); + if (ptr != 0) { bindings.QueryShortChannelIds_free(ptr); } } - public static QueryShortChannelIds constructor_clone(QueryShortChannelIds orig) { - long ret = bindings.QueryShortChannelIds_clone(orig == null ? 0 : orig.ptr & ~1); + public QueryShortChannelIds clone() { + long ret = bindings.QueryShortChannelIds_clone(this.ptr); QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret); - ret_hu_conv.ptrs_to.add(orig); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -37,18 +37,18 @@ public class QueryShortChannelIds extends CommonBase { public static QueryShortChannelIds constructor_new(byte[] chain_hash_arg, long[] short_channel_ids_arg) { long ret = bindings.QueryShortChannelIds_new(chain_hash_arg, short_channel_ids_arg); QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; } - public static QueryShortChannelIds constructor_read(byte[] ser) { + public static Result_QueryShortChannelIdsDecodeErrorZ constructor_read(byte[] ser) { long ret = bindings.QueryShortChannelIds_read(ser); - QueryShortChannelIds ret_hu_conv = new QueryShortChannelIds(null, ret); + Result_QueryShortChannelIdsDecodeErrorZ ret_hu_conv = Result_QueryShortChannelIdsDecodeErrorZ.constr_from_ptr(ret); return ret_hu_conv; } - public byte[] write(QueryShortChannelIds obj) { - byte[] ret = bindings.QueryShortChannelIds_write(obj == null ? 0 : obj.ptr & ~1); - this.ptrs_to.add(obj); + public byte[] write() { + byte[] ret = bindings.QueryShortChannelIds_write(this.ptr); return ret; }