|
From: roger h. <apo...@sn...> - 2003-11-12 15:22:11
|
The following code in MethodMatchers.IntersectionMethodMatcher
looks like a candidate:
public boolean isRuntime() {
- return a.isRuntime() || b.isRuntime();
+ return a.isRuntime() && b.isRuntime();
}
Roger
|