diff --git a/extras/src/main/java/com/google/gson/typeadapters/RuntimeTypeAdapterFactory.java b/extras/src/main/java/com/google/gson/typeadapters/RuntimeTypeAdapterFactory.java index 5bdf6e51..f9ee32b4 100644 --- a/extras/src/main/java/com/google/gson/typeadapters/RuntimeTypeAdapterFactory.java +++ b/extras/src/main/java/com/google/gson/typeadapters/RuntimeTypeAdapterFactory.java @@ -94,11 +94,11 @@ import com.google.gson.stream.JsonWriter; * "Rectangle"}) are configurable. * *
{@code - * RuntimeTypeAdapter* Next register all of your subtypes. Every subtype must be explicitly * registered. This protects your application from injection attacks. If you @@ -115,7 +115,7 @@ import com.google.gson.stream.JsonWriter; * .create(); * } * Like {@code GsonBuilder}, this API supports chaining:shapeAdapter - * = RuntimeTypeAdapter.of(Shape.class, "type"); + * RuntimeTypeAdapterFactory shapeAdapter + * = RuntimeTypeAdapterFactory.of(Shape.class, "type"); * }
{@code - * RuntimeTypeAdaptershapeAdapter = RuntimeTypeAdapterFactory.of(Shape.class) + * RuntimeTypeAdapterFactory shapeAdapter = RuntimeTypeAdapterFactory.of(Shape.class) * .registerSubtype(Rectangle.class) * .registerSubtype(Circle.class) * .registerSubtype(Diamond.class);