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 { * class StatsTypeAdapterFactory implements TypeAdapterFactory {
* public int numReads = 0; * public int numReads = 0;
* public int numWrites = 0; * public int numWrites = 0;
* public &lt;T&gt; TypeAdapter&lt;T&gt; create(Gson gson, TypeToken&lt;T&gt; type) { * public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
* final TypeAdapter&lt;T&gt; delegate = gson.getDelegateAdapter(this, type); * final TypeAdapter<T> delegate = gson.getDelegateAdapter(this, type);
* return new TypeAdapter&lt;T&gt;() { * return new TypeAdapter<T>() {
* public void write(JsonWriter out, T value) throws IOException { * public void write(JsonWriter out, T value) throws IOException {
* ++numWrites; * ++numWrites;
* delegate.write(out, value); * delegate.write(out, value);