Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Oct 21, 2024
1 parent ec16c72 commit 3362cd3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Ydb.Sdk/src/Services/Topic/Serializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ public byte[] Serialize(int data)

private class ByteArraySerializer : ISerializer<byte[]>
{
public byte[] Serialize(byte[] data) => data;
public byte[] Serialize(byte[] data)
{
return data;
}
}
}

0 comments on commit 3362cd3

Please sign in to comment.