Skip to content

Commit

Permalink
Make RewrittenArrayEncodedValue delegate rewriting sub-values to the …
Browse files Browse the repository at this point in the history
…module
  • Loading branch information
JesusFreke committed Feb 3, 2020
1 parent 78e92b0 commit cb37770
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public RewrittenArrayEncodedValue(@Nonnull ArrayEncodedValue arrayEncodedValue)
}

@Override @Nonnull public List<? extends EncodedValue> getValue() {
return RewriterUtils.rewriteList(EncodedValueRewriter.this, arrayEncodedValue.getValue());
return RewriterUtils.rewriteList(rewriters.getEncodedValueRewriter(), arrayEncodedValue.getValue());
}
}

Expand Down

0 comments on commit cb37770

Please sign in to comment.