patch from SourceForge issue 520 was applied
This commit is contained in:
parent
c7804c0910
commit
140bac81ae
|
|
@ -203,13 +203,13 @@ public class SuppressionCommentFilter
|
|||
final Matcher tagMatcher =
|
||||
mTagCheckRegexp.matcher(aEvent.getSourceName());
|
||||
if (tagMatcher.find()) {
|
||||
if (mTagMessageRegexp != null) {
|
||||
final Matcher messageMatcher =
|
||||
mTagMessageRegexp.matcher(aEvent.getMessage());
|
||||
return messageMatcher.find();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if (mTagMessageRegexp != null) {
|
||||
final Matcher messageMatcher =
|
||||
mTagMessageRegexp.matcher(aEvent.getMessage());
|
||||
return messageMatcher.find();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue