me.zhangchunsheng.hubble.common.util.json.JuheGsonBuilder Maven / Gradle / Ivy
The newest version!
package me.zhangchunsheng.hubble.common.util.json;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
public class JuheGsonBuilder {
private static final GsonBuilder INSTANCE = new GsonBuilder();
static {
INSTANCE.disableHtmlEscaping();
}
public static Gson create() {
return INSTANCE.create();
}
}