Skip to content

Commit

Permalink
Spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav committed Jan 26, 2022
1 parent d97e294 commit 51b57f8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/com/sinch/xms/api/JacksonUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ protected byte[] _deserialize(String value, DeserializationContext ctxt) throws
return (byte[]) ctxt.handleWeirdStringValue(handledType(), value, e.getMessage());
}
}
}
;
};

/** Jackson serializer for hex encoded byte arrays. */
static final class ByteArrayHexSerializer extends StdScalarSerializer<byte[]> {
Expand All @@ -71,8 +70,7 @@ public void serialize(byte[] value, JsonGenerator gen, SerializerProvider provid
throws IOException {
gen.writeString(Hex.encodeHexString(value));
}
}
;
};

/** JSON deserializer of parameter values. */
static final class ParameterValuesDeserializer extends StdNodeBasedDeserializer<ParameterValues> {
Expand Down

0 comments on commit 51b57f8

Please sign in to comment.