X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FChannelUpdate.java;h=cb055f37c92018fa3283968b387c825753672d70;hb=fed2245c60159f6c074c9ed5c0f3ce273ad9841b;hp=3fe97d5ac2bd2ddc6469830ba4f02b78d7b8dab0;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/ChannelUpdate.java b/src/main/java/org/ldk/structs/ChannelUpdate.java index 3fe97d5a..cb055f37 100644 --- a/src/main/java/org/ldk/structs/ChannelUpdate.java +++ b/src/main/java/org/ldk/structs/ChannelUpdate.java @@ -11,13 +11,13 @@ public class ChannelUpdate extends CommonBase { @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.ChannelUpdate_free(ptr); + if (ptr != 0) { bindings.ChannelUpdate_free(ptr); } } - public static ChannelUpdate constructor_clone(ChannelUpdate orig) { - long ret = bindings.ChannelUpdate_clone(orig == null ? 0 : orig.ptr & ~1); + public ChannelUpdate clone() { + long ret = bindings.ChannelUpdate_clone(this.ptr); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); - ret_hu_conv.ptrs_to.add(orig); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -33,6 +33,7 @@ public class ChannelUpdate extends CommonBase { public UnsignedChannelUpdate get_contents() { long ret = bindings.ChannelUpdate_get_contents(this.ptr); UnsignedChannelUpdate ret_hu_conv = new UnsignedChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; } @@ -44,19 +45,20 @@ public class ChannelUpdate extends CommonBase { public static ChannelUpdate constructor_new(byte[] signature_arg, UnsignedChannelUpdate contents_arg) { long ret = bindings.ChannelUpdate_new(signature_arg, contents_arg == null ? 0 : contents_arg.ptr & ~1); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); ret_hu_conv.ptrs_to.add(contents_arg); return ret_hu_conv; } - public byte[] write(ChannelUpdate obj) { - byte[] ret = bindings.ChannelUpdate_write(obj == null ? 0 : obj.ptr & ~1); - this.ptrs_to.add(obj); + public byte[] write() { + byte[] ret = bindings.ChannelUpdate_write(this.ptr); return ret; } public static ChannelUpdate constructor_read(byte[] ser) { long ret = bindings.ChannelUpdate_read(ser); ChannelUpdate ret_hu_conv = new ChannelUpdate(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); return ret_hu_conv; }