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