Skip to content

Commit

Permalink
VOID should return null content type (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper authored Apr 30, 2024
1 parent 7b4dd3f commit eeb5eeb
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ public Void deserialize(byte[] value) {
public Void deserialize(ByteString byteString) {
return null;
}

@Override
public @Nullable String contentType() {
return null;
}
};

/** Pass through {@link Serde} for byte array. */
Expand Down

0 comments on commit eeb5eeb

Please sign in to comment.