:shock: Ummm, ähhh,... Aha!
Well I see, this one does the trick:
Code:
TransactionAttribute attr = (TransactionAttribute) this.nameMap.get(methodName);
if (attr != null) {
return attr;
}
I had a problem half a year ago. I visit the source and though hey no equal match, just add stars. So I changed it and well I guess ... Uhm don't know.
But look at this:
Code:
else {
// look up most specific name match
String bestNameMatch = null;
[...]
The code is saying something to me: "Please split me up, I am a method responsible for two things in one..."
Anyways, problem solved! - Thanks!
Martin (Kersten)