Skip to content

Commit

Permalink
Update RawableFactory.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sazzad16 authored Mar 25, 2024
1 parent 83a9fd0 commit 52c5864
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/redis/clients/jedis/args/RawableFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ public byte[] getRaw() {
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Raw raw1 = (Raw) o;
return Arrays.equals(raw, raw1.raw);
return Arrays.equals(raw, ((Raw) o).raw);
}

@Override
Expand Down

0 comments on commit 52c5864

Please sign in to comment.