fix rule cache tag comparison with previous item
This commit is contained in:
parent
82eb60e2a9
commit
2c48530ce1
@ -33,7 +33,7 @@ class MatchingCacheKey {
|
|||||||
boolean set(Tag[] tags, MatchingCacheKey compare) {
|
boolean set(Tag[] tags, MatchingCacheKey compare) {
|
||||||
int length = tags.length;
|
int length = tags.length;
|
||||||
|
|
||||||
if (compare != null && length == mTags.length) {
|
if (compare != null && length == compare.mTags.length) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (; i < length; i++) {
|
for (; i < length; i++) {
|
||||||
Tag t1 = tags[i];
|
Tag t1 = tags[i];
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user