HBASE-14995 Revert according to Ram's feedback

This commit is contained in:
tedyu 2015-12-16 21:54:48 -08:00
parent 546ac1cbb3
commit d78eddfdc8
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ public class DefaultMemStore implements MemStore {
// When we use ACL CP or Visibility CP which deals with Tags during
// mutation, the TagRewriteCell.getTagsLength() is a cheaper call. We do not
// parse the byte[] to identify the tags length.
if (!tagsPresent && (e.getTagsLength() > 0)) {
if(e.getTagsLength() > 0) {
tagsPresent = true;
}
setOldestEditTimeToNow();