Skip to content

Commit

Permalink
fix(remote): set b64 encoding threshold to 0 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mchitre committed Mar 17, 2022
1 parent 14d2894 commit 3c71524
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ArrayAdapterFactory implements TypeAdapterFactory {

public ArrayAdapterFactory() {
bare = false;
threshold = 16;
threshold = 0;
}

public ArrayAdapterFactory(boolean bare, int threshold) {
Expand Down

0 comments on commit 3c71524

Please sign in to comment.