gson-compile/gson-compile-core/src/main/java/io/gitlab/jfronny/gson/compile/core/Test.java

24 lines
599 B
Java

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<String>() {
@Override
public void write(JsonWriter jsonWriter, String s) throws IOException {
}
@Override
public String read(JsonReader jsonReader) throws IOException {
return null;
}
};
}
}