MCPcopy
hub / github.com/google/gson / read

Method read

gson/src/main/java/com/google/gson/internal/Excluder.java:128–135  ·  view source on GitHub ↗
(JsonReader in)

Source from the content-addressed store, hash-verified

126 private volatile TypeAdapter<T> delegate;
127
128 @Override
129 public T read(JsonReader in) throws IOException {
130 if (skipDeserialize) {
131 in.skipValue();
132 return null;
133 }
134 return delegate().read(in);
135 }
136
137 @Override
138 public void write(JsonWriter out, T value) throws IOException {

Callers 2

parseMethod · 0.45
fillBufferMethod · 0.45

Calls 2

delegateMethod · 0.95
skipValueMethod · 0.45

Tested by

no test coverage detected