Skip to content

Commit

Permalink
issues/53 - Implement byte serialization for CLKeyValue
Browse files Browse the repository at this point in the history
  • Loading branch information
imills committed Sep 28, 2021
1 parent f665a5b commit 3295fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected String getValueBytes(final CLKeyValue value) {
return value.toHex();
}

private void writeParsed(CLKeyValue value, JsonGenerator gen) throws IOException {
private void writeParsed(final CLKeyValue value, final JsonGenerator gen) throws IOException {

final String strParsed;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ void u512ValueToBytes() {
assertThat(byteSerializer.toBytes(source), is(expected));
}


@Test
void optionValueToBytes() {

Expand Down Expand Up @@ -116,4 +115,4 @@ void keyValueToBytes() {

assertThat(byteSerializer.toBytes(clKeyValue), is(expected));
}
}
}

0 comments on commit 3295fa8

Please sign in to comment.