package io.gitlab.jfronny.gson.compile.core; import io.gitlab.jfronny.gson.TypeAdapter; import io.gitlab.jfronny.gson.stream.JsonReader; import io.gitlab.jfronny.gson.stream.JsonWriter; import java.io.IOException; public class Test { public static void main(String[] args) { new TypeAdapter() { @Override public void write(JsonWriter jsonWriter, String s) throws IOException { } @Override public String read(JsonReader jsonReader) throws IOException { return null; } }; } }