Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 9824b18

Browse files
author
Matthias Böckmann
committed
Fixing hashCode of Arrays
1 parent 865d034 commit 9824b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/adminshell/aas/v3/model/impl/DefaultBlob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public DefaultBlob() {}
7575
@Override
7676
public int hashCode() {
7777
return Objects.hash(this.mimeType,
78-
this.value,
78+
Arrays.hashCode(this.value),
7979
this.category,
8080
this.descriptions,
8181
this.displayNames,

0 commit comments

Comments
 (0)