-
-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Labels
Description
If you're converting a type that inherits/extends nested types, the declaring type is left off of the conversion.
Example input:
public class CachedFeatureGeneratorFactory
extends GeneratorFactory.AbstractXmlFeatureGeneratorFactory
implements GeneratorFactory.XmlFeatureGeneratorFactory {Current output:
public class CachedFeatureGeneratorFactory : AbstractXmlFeatureGeneratorFactory, XmlFeatureGeneratorFactoryExpected output:
public class CachedFeatureGeneratorFactory : GeneratorFactory.AbstractXmlFeatureGeneratorFactory, GeneratorFactory.XmlFeatureGeneratorFactory