This commit is contained in:
Dmitry Jemerov
2009-09-11 18:11:39 +04:00
parent e203e9c06e
commit cf01415fd6
17 changed files with 8 additions and 2 deletions
@@ -0,0 +1,4 @@
class Sub extends Super {
public Sub() {
}
}
@@ -0,0 +1,7 @@
class Super {
public <caret>Super() {
} //Safe Delete should not allow this to be deleted without first changing class Sub's constructors to use Super(String)
public Super(String name) {
}
}