Skip to content

Conversation

@chuff
Copy link
Contributor

@chuff chuff commented Jan 29, 2026

No description provided.

@TheloniousSF
Copy link
Collaborator

@yuzawa-san would you mind giving this a review. We'll include it in Monday's release.

Copy link
Contributor

@yuzawa-san yuzawa-san left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems like delaware is leaking in

@Override
protected List<EncodableSegment> initializeSegments() {
List<EncodableSegment> segments = new ArrayList<>();
segments.add(new UsDeCoreSegment());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UsMnCoreSegment
UsMnGpcSegment

}

public Integer getSaleOptOutNotice() {
return (Integer) this.getFieldValue(UsDeField.SALE_OPT_OUT_NOTICE);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update all references to UsDeField to be UsMnField

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. Should be fixed now.

Copy link
Contributor

@yuzawa-san yuzawa-san left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fields.put(UsMnField.TARGETED_ADVERTISING_OPT_OUT,
new EncodableFixedInteger(2, 0).withValidator(nullableBooleanAsTwoBitIntegerValidator));
fields.put(UsMnField.SENSITIVE_DATA_PROCESSING,
new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0, 0, 0, 0, 0))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is N-Bitfield(2,8) so one of these 0's needs to be removed

new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0, 0, 0, 0, 0))
.withValidator(nullableBooleanAsTwoBitIntegerListValidator));
fields.put(UsMnField.KNOWN_CHILD_SENSITIVE_DATA_CONSENTS,
new EncodableFixedIntegerList(2, Arrays.asList(0, 0, 0, 0, 0))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is Int(2) so i think it needs to be new EncodableFixedInteger(2, 0).withValidator(nullableBooleanAsTwoBitIntegerValidator)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants