All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy