String name = anno.name().length == 0 ? method.getName() : anno.name()[0];
List<JavaMethodDescriptor> methodDescs;
Map<String, List<JavaMethodDescriptor>> methodsHash = null;
if (desc.isStatic) {
if (anno.compat() == RUBY1_8) {
methodsHash = staticAnnotatedMethods1_8;
} else if (anno.compat() == RUBY1_9) {
methodsHash = staticAnnotatedMethods1_9;
} else if (anno.compat() == RUBY2_0) {
methodsHash = staticAnnotatedMethods2_0;