I modified the 'Class' file template, to make all classes created by intention 'final'.
Problem: 'Create class' by intention produce code that doesn't compile, because the superclass is final.
To reproduce:
- modify 'Class' F.T. by having the generated class be final
- type the code below
public final class Foo extends FooParent
{
}
Problem: the generated FooParent is final => won't compile.
Also see: http://www.jetbrains.net/jira/browse/IDEADEV-1826