Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend visibility of Custom Moshi Adapters #30

Merged
merged 1 commit into from
May 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import java.math.BigDecimal
* Moshi Factory to handle all the custom types we want to support,
* such as [LocalDate], [ZonedDateTime], [BigDecimal].
*/
internal class TypesAdapterFactory : JsonAdapter.Factory {
class TypesAdapterFactory : JsonAdapter.Factory {
private val types = mapOf<Type, JsonAdapter<*>>(
LocalDate::class.java to LocalDateAdapter(),
ZonedDateTime::class.java to ZonedDateTimeAdapter(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import com.squareup.moshi.JsonWriter
import com.squareup.moshi.Moshi
import java.lang.reflect.Type

internal class XNullableAdapterFactory : JsonAdapter.Factory {
class XNullableAdapterFactory : JsonAdapter.Factory {
override fun create(type: Type, annotations: MutableSet<out Annotation>, moshi: Moshi): JsonAdapter<*>? {
if (annotations.any { it is XNullable }) {
return object : JsonAdapter<Any>() {
Expand Down