Skip to content

Commit 623ee38

Browse files
committed
expose integerset on rangeentry
1 parent 5f203c4 commit 623ee38

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

iabgpp-encoder/src/main/java/com/iab/gpp/encoder/datatype/RangeEntry.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
import java.util.Collection;
44
import java.util.Set;
55
import com.iab.gpp.encoder.datatype.encoder.IntegerBitSet;
6+
import com.iab.gpp.encoder.datatype.encoder.IntegerSet;
67

78
public class RangeEntry {
89

910
private int key;
1011
private int type;
11-
private Set<Integer> ids;
12+
private final IntegerSet ids;
1213

1314
public RangeEntry(int key, int type, Set<Integer> ids) {
1415
super();
@@ -34,7 +35,7 @@ public void setType(int type) {
3435
this.type = type;
3536
}
3637

37-
public Set<Integer> getIds() {
38+
public IntegerSet getIds() {
3839
return ids;
3940
}
4041

0 commit comments

Comments
 (0)