X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fldk%2Fstructs%2FDataLossProtect.java;h=4d0e79d4921dfa4bc9e495186cf4fa6132633046;hb=9e8763c71cd61d55be7c869d973524f75209a3f3;hp=2a5438e1836483a2cc41345c25905393c0499421;hpb=110f2f104ba8fc34caa7e34e04737f36f064b050;p=ldk-java diff --git a/src/main/java/org/ldk/structs/DataLossProtect.java b/src/main/java/org/ldk/structs/DataLossProtect.java index 2a5438e1..4d0e79d4 100644 --- a/src/main/java/org/ldk/structs/DataLossProtect.java +++ b/src/main/java/org/ldk/structs/DataLossProtect.java @@ -11,14 +11,7 @@ public class DataLossProtect extends CommonBase { @Override @SuppressWarnings("deprecation") protected void finalize() throws Throwable { super.finalize(); - bindings.DataLossProtect_free(ptr); - } - - public static DataLossProtect constructor_clone(DataLossProtect orig) { - long ret = bindings.DataLossProtect_clone(orig == null ? 0 : orig.ptr & ~1); - DataLossProtect ret_hu_conv = new DataLossProtect(null, ret); - ret_hu_conv.ptrs_to.add(orig); - return ret_hu_conv; + if (ptr != 0) { bindings.DataLossProtect_free(ptr); } } public byte[] get_your_last_per_commitment_secret() { @@ -42,6 +35,14 @@ public class DataLossProtect extends CommonBase { public static DataLossProtect constructor_new(byte[] your_last_per_commitment_secret_arg, byte[] my_current_per_commitment_point_arg) { long ret = bindings.DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg); DataLossProtect ret_hu_conv = new DataLossProtect(null, ret); + ret_hu_conv.ptrs_to.add(ret_hu_conv); + return ret_hu_conv; + } + + public DataLossProtect clone() { + long ret = bindings.DataLossProtect_clone(this.ptr); + DataLossProtect ret_hu_conv = new DataLossProtect(null, ret); + ret_hu_conv.ptrs_to.add(this); return ret_hu_conv; }