abstract methods

This commit is contained in:
Dmitry Jemerov
2011-05-30 15:26:34 +04:00
parent 867e2f4938
commit 5c9a807c57
4 changed files with 19 additions and 5 deletions
@@ -180,7 +180,7 @@ public abstract class CodegenTestCase extends LightCodeInsightFixtureTestCase {
@Nullable
protected static Method findMethodByName(Class aClass, String name) {
for (Method method : aClass.getMethods()) {
for (Method method : aClass.getDeclaredMethods()) {
if (method.getName().equals(name)) {
return method;
}