Factory always wanted to be public.

This commit is contained in:
Jesse Wilson 2011-08-03 00:17:17 +00:00
parent f127398ad1
commit 759eb8ede5

View File

@ -50,7 +50,7 @@ public abstract class TypeAdapter<T> {
return read(reader);
}
interface Factory {
public interface Factory {
<T> TypeAdapter<T> create(MiniGson context, TypeToken<T> type);
}
}