11 lines
225 B
Java
11 lines
225 B
Java
package com.google.gson;
|
|
|
|
import java.lang.reflect.Type;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface JsonSerializationContext {
|
|
JsonElement serialize(Object obj);
|
|
|
|
JsonElement serialize(Object obj, Type type);
|
|
}
|