|
|
@ -176,9 +176,11 @@ public class FilterEngine { |
|
|
|
|
|
|
|
|
|
|
|
if (matcher == null) { |
|
|
|
if (matcher == null) { |
|
|
|
Pattern compiledPattern = compile(filter.pattern); |
|
|
|
Pattern compiledPattern = compile(filter.pattern); |
|
|
|
|
|
|
|
if (compiledPattern != null) { |
|
|
|
matcher = filter.compiledMatcher = compiledPattern.matcher(""); |
|
|
|
matcher = filter.compiledMatcher = compiledPattern.matcher(""); |
|
|
|
Logger.d(TAG, "Resulting pattern: " + filter.compiledMatcher); |
|
|
|
Logger.d(TAG, "Resulting pattern: " + filter.compiledMatcher); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (matcher != null) { |
|
|
|
if (matcher != null) { |
|
|
|
matcher.reset(text); |
|
|
|
matcher.reset(text); |
|
|
|