Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / Sha256.java
index 011cd86130d5d3dd1c804eda24a1415c60c5d489..58497f1d44f8413c37bb248785adef558c2c513e 100644 (file)
@@ -4,6 +4,7 @@ import org.ldk.impl.bindings;
 import org.ldk.enums.*;
 import org.ldk.util.*;
 import java.util.Arrays;
+import java.lang.ref.Reference;
 import javax.annotation.Nullable;
 
 
@@ -21,6 +22,7 @@ public class Sha256 extends CommonBase {
 
        long clone_ptr() {
                long ret = bindings.Sha256_clone_ptr(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
@@ -29,6 +31,7 @@ public class Sha256 extends CommonBase {
         */
        public Sha256 clone() {
                long ret = bindings.Sha256_clone(this.ptr);
+               Reference.reachabilityFence(this);
                if (ret >= 0 && ret <= 4096) { return null; }
                Sha256 ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new Sha256(null, ret); }
                ret_hu_conv.ptrs_to.add(this);
@@ -40,9 +43,13 @@ public class Sha256 extends CommonBase {
         */
        public long hash() {
                long ret = bindings.Sha256_hash(this.ptr);
+               Reference.reachabilityFence(this);
                return ret;
        }
 
+       @Override public int hashCode() {
+               return (int)this.hash();
+       }
        /**
         * Checks if two Sha256s contain equal inner contents.
         * This ignores pointers and is_owned flags and looks at the values in fields.
@@ -50,8 +57,14 @@ public class Sha256 extends CommonBase {
         */
        public boolean eq(Sha256 b) {
                boolean ret = bindings.Sha256_eq(this.ptr, b == null ? 0 : b.ptr & ~1);
+               Reference.reachabilityFence(this);
+               Reference.reachabilityFence(b);
                this.ptrs_to.add(b);
                return ret;
        }
 
+       @Override public boolean equals(Object o) {
+               if (!(o instanceof Sha256)) return false;
+               return this.eq((Sha256)o);
+       }
 }