Skip to content

Commit

Permalink
add back no-arg constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Feb 14, 2023
1 parent 3d92da9 commit dd43741
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package co.tinode.tinodesdk.model;

import com.fasterxml.jackson.core.JacksonException;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.JsonToken;
Expand All @@ -16,6 +15,10 @@
// https://github.com/FasterXML/jackson-databind/issues/3784
// Once the bug is fixed, this class can be safely removed.
public class Base64Deserializer extends PrimitiveArrayDeserializers<byte[]> {
// This is required! Do not remove.
public Base64Deserializer() {
super(byte[].class);
}

protected Base64Deserializer(Base64Deserializer base, NullValueProvider nuller, Boolean unwrapSingle) {
super(base, nuller, unwrapSingle);
Expand Down

0 comments on commit dd43741

Please sign in to comment.