We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f203c4 commit 623ee38Copy full SHA for 623ee38
1 file changed
iabgpp-encoder/src/main/java/com/iab/gpp/encoder/datatype/RangeEntry.java
@@ -3,12 +3,13 @@
3
import java.util.Collection;
4
import java.util.Set;
5
import com.iab.gpp.encoder.datatype.encoder.IntegerBitSet;
6
+import com.iab.gpp.encoder.datatype.encoder.IntegerSet;
7
8
public class RangeEntry {
9
10
private int key;
11
private int type;
- private Set<Integer> ids;
12
+ private final IntegerSet ids;
13
14
public RangeEntry(int key, int type, Set<Integer> ids) {
15
super();
@@ -34,7 +35,7 @@ public void setType(int type) {
34
35
this.type = type;
36
}
37
- public Set<Integer> getIds() {
38
+ public IntegerSet getIds() {
39
return ids;
40
41
0 commit comments