Hmm… maybe I’m missing something but this `("%T as...
# squarelibraries
m
Hmm… maybe I’m missing something but this
("%T as %T", sourcedWith, featureType)
generates this
override val sourcedWith: Class<Feature<*>> = <http://com.my|com.my>.CustomFeature as Class<Feature<*>>
And I want
override val sourcedWith: Class<Feature<*>> = CustomFeature::class.java as Class<Feature<*>>