Merge pull request #826 from sgbrown/htmlEncodeInJavadocCodeBlock

minor javadoc @code block cleanup
This commit is contained in:
inder123 2016-04-09 00:28:44 -07:00
commit a477f4f0ca

View File

@ -428,9 +428,9 @@ public final class Gson {
* class StatsTypeAdapterFactory implements TypeAdapterFactory {
* public int numReads = 0;
* public int numWrites = 0;
* public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
* final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type);
* return new TypeAdapter<T>() {
* public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
* final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type);
* return new TypeAdapter<T>() {
* public void write(JsonWriter out, T value) throws IOException {
* ++numWrites;
* delegate.write(out, value);