mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
8 lines
267 B
Java
8 lines
267 B
Java
package com.google.gson;
|
|
|
|
import java.lang.reflect.Type;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface JsonDeserializer<T> {
|
|
T deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException;
|
|
}
|