add missing class to mockJDK rt.jar so that test will pass with JDK 1.5
[fedora-idea.git] / testData / refactoring / replaceConstructorWithFactory / before05.java
blob398322d17a1c9b19a740607a21c1ca6f44421205
1 class A {
2 A(int i) {<caret>
6 class B extends A {
7 B(int i) {
8 super(i);