Skip to content

Commit

Permalink
Change wrt db/3037 (Module->JacksonModule)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 4, 2021
1 parent dfbdfe4 commit bec26a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.fasterxml.jackson.module.kotlin
import com.fasterxml.jackson.annotation.JsonCreator
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.DeserializationFeature
import com.fasterxml.jackson.databind.Module
import com.fasterxml.jackson.databind.JacksonModule
import com.fasterxml.jackson.databind.cfg.MapperConfig
import com.fasterxml.jackson.databind.introspect.*
import com.fasterxml.jackson.databind.jsontype.NamedType
Expand All @@ -20,7 +20,7 @@ import kotlin.reflect.full.declaredMemberProperties
import kotlin.reflect.jvm.*


internal class KotlinAnnotationIntrospector(private val context: Module.SetupContext,
internal class KotlinAnnotationIntrospector(private val context: JacksonModule.SetupContext,
private val cache: ReflectionCache,
private val nullToEmptyCollection: Boolean,
private val nullToEmptyMap: Boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/moditect/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

exports com.fasterxml.jackson.module.kotlin;

provides com.fasterxml.jackson.databind.Module with
provides com.fasterxml.jackson.databind.JacksonModule with
com.fasterxml.jackson.module.kotlin.KotlinModule;
}

0 comments on commit bec26a4

Please sign in to comment.