9899100101102103104105106107108
} if (excluded == null || excluded.isEmpty()) { this.excluded = null; } else { this.excluded = new TLongHashSet(excluded.size()); for (String s : excluded) { this.excluded.add(Long.parseLong(s)); } }
185186187188189190191192193194195
super(facets); this.script = script; if (excluded == null || excluded.isEmpty()) { this.excluded = null; } else { this.excluded = new TLongHashSet(excluded.size()); for (String s : excluded) { this.excluded.add(Long.parseLong(s)); } } }