Merge pull request #353 from square/eric.20170925.unwrap-write

Fix not writing value to JsonWriter in example.
This commit is contained in:
Jesse Wilson 2017-09-25 13:30:32 -04:00 committed by GitHub
commit f5ceb91e0f

View file

@ -88,7 +88,7 @@ final class Unwrap {
}
@Override public void toJson(JsonWriter writer, Object value) throws IOException {
delegate.toJson(new Envelope<>(value));
delegate.toJson(writer, new Envelope<>(value));
}
}
}