We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4541fbb commit 2342df3Copy full SHA for 2342df3
1 file changed
sdk/src/main/java/io/opentdf/platform/sdk/Manifest.java
@@ -51,8 +51,7 @@ public boolean equals(Object o) {
51
return false;
52
Manifest manifest = (Manifest) o;
53
return Objects.equals(encryptionInformation, manifest.encryptionInformation)
54
- && Objects.equals(payload, manifest.payload)
55
- && (manifest.assertions != null && Objects.equals(assertions, manifest.assertions));
+ && Objects.equals(payload, manifest.payload) && Objects.equals(assertions, manifest.assertions);
56
}
57
58
@Override
0 commit comments