addContainerTransaction(attribute, ejbName, method, assemblyDescriptor);
} else {
// method name already declared
List<MethodTransaction> list = methodTransactions.get(method.getName());
for (MethodTransaction mtx : list) {
MethodParams methodParams = mtx.getMethodParams();
if (methodParams == null) {
// params not specified, so this is more specific
addContainerTransaction(attribute, ejbName, method, assemblyDescriptor);
} else {
List<String> params1 = methodParams.getMethodParam();
String[] params2 = asStrings(method.getParameterTypes());
if (params1.size() != params2.length) {
// params not the same
addContainerTransaction(attribute, ejbName, method, assemblyDescriptor);
} else {