Minor. Renamed test.

This commit is contained in:
Evgeny Gerashchenko
2013-06-13 20:35:09 +04:00
parent ee9fcff9ca
commit d78f36a780
3 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
class Super {
void safeInvoke(Runnable r) {
if (r != null) r.run();
}
}
class Sub extends Super {
}