Merge branch 'ig_performance' into ig_tag_query

This commit is contained in:
Brian Carrier 2018-09-20 23:38:11 -04:00
commit ecabf393d9

View File

@ -74,7 +74,8 @@ public class GroupKey<T extends Comparable<T>> implements Comparable<GroupKey<T>
hash = 79 * hash + Objects.hashCode(this.val);
hash = 79 * hash + Objects.hashCode(this.attr);
hash = 79 * hash + (int)this.dataSource.getId();
if (this.dataSource != null)
hash = 79 * hash + (int)this.dataSource.getId();
return hash;
}