Skip to content

Commit

Permalink
Remove yellow code (#2691)
Browse files Browse the repository at this point in the history
The corresponding change in the compiler (see KT-67764) improves the detection
of `CONFLICTING_PROJECTIONS`, which makes this code yellow, because now it provokes
`REDUNDANT_PROJECTION`.

^KT-67764
^KT-68488
  • Loading branch information
lunakoly authored May 27, 2024
1 parent 1f38e22 commit 385c97d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ internal class SerialModuleImpl(
}

polyBase2DefaultDeserializerProvider.forEach { (baseClass, provider) ->
collector.polymorphicDefaultDeserializer(baseClass as KClass<Any>, provider as (PolymorphicDeserializerProvider<out Any>))
collector.polymorphicDefaultDeserializer(baseClass as KClass<Any>, provider as (PolymorphicDeserializerProvider<Any>))
}
}
}
Expand Down

0 comments on commit 385c97d

Please sign in to comment.