e.g. I use the intention to implement AbstractFoo<E>
I expect this:
public class FooImpl<E> extends AbstractFoo<E>
....
but I get only this generated:
public class FooImpl extends AbstractFoo
....
Description
e.g. I use the intention to implement AbstractFoo<E>
I expect this:
public class FooImpl<E> extends AbstractFoo<E>
....
but I get only this generated:
public class FooImpl extends AbstractFoo
....