Skip to content
Merged
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
8b84427
lazy decoding
Aug 30, 2023
89c5567
java 8 compatible gppmodel tests
Aug 31, 2023
1c4ae8a
rename missed multistate usp* methods to us*
Sep 3, 2023
2b159f4
lazier decoding
Sep 5, 2023
4a516b9
lazier decoding
Sep 6, 2023
6eccd6d
tests for null and empty string constructor arguments
Sep 6, 2023
1137652
validation
Sep 11, 2023
5b536dc
fix typo
Sep 11, 2023
6c705b3
remove redundant validate call
Sep 11, 2023
909cad2
default validate
Sep 11, 2023
47874d2
remove empty validate method from header core segment
Sep 11, 2023
97fd395
fix usct validator
Sep 11, 2023
db78746
3.1.1
Sep 14, 2023
9824305
3.1.2-SNAPSHOT
Sep 14, 2023
8106a9e
Merge remote-tracking branch 'upstream/master'
Sep 23, 2023
0e67b3c
tcfca publisher restrictions and disclosed vendors
Oct 3, 2023
51d289a
merge validation and ca-pub-restrictions
Oct 7, 2023
8af6c08
deprecate multi-state usp* methods
Oct 7, 2023
4b871d9
merge multistate-usp-to-us
Oct 7, 2023
cf5560a
merge multistate-usp-to-us
Oct 7, 2023
aa2bfc2
substring error handling
Oct 7, 2023
615ab24
merge ca-pub-restrictions
Oct 7, 2023
080eb5d
remove deprecated usp methods
Oct 7, 2023
a3f0f1c
remove deprecated usp methods
Oct 7, 2023
46323b7
remove deprecated usp methods
Oct 7, 2023
cdffeab
Merge branch 'multistate-usp-to-us' into lazy-decoding
Oct 7, 2023
0c2bc92
Merge branch 'lazy-decoding' into validation
Oct 7, 2023
c976640
Merge branch 'validation' into develop
Oct 7, 2023
9ff3562
Merge remote-tracking branch 'upstream/master' into lazy-decoding
Oct 7, 2023
eda06e6
Merge remote-tracking branch 'upstream/master' into validation
Oct 7, 2023
38bd153
cleanup validators
Oct 8, 2023
55411c1
merge validation
Oct 8, 2023
811d172
Better decoding exception messaging
Oct 8, 2023
157cacb
remove unused classes
Oct 8, 2023
ecbd815
Update README
Oct 8, 2023
667e1ba
Merge branch 'ca-pub-restrictions' into develop
Oct 8, 2023
75d9427
add support for the old headerless tcfeuv2 strings
Oct 9, 2023
af2c0b7
encodeSection fix
Oct 9, 2023
4f182f8
encodeSection lazy fix
Oct 9, 2023
24c53ca
Merge branch 'lazy-decoding' into validation
Oct 9, 2023
3b5badb
Merge branch 'validation' into develop
Oct 9, 2023
cedac14
tcfeu pub restrictions fix
Dec 13, 2023
a7f851a
merge pub restrictions
Dec 13, 2023
9b477a4
pub restrictions getters
Dec 13, 2023
d92bce0
merge pub restrictions
Dec 13, 2023
c7dbab5
tcfeu pub restirctions fix
Dec 13, 2023
b94ded6
merge pub restrictions
Dec 13, 2023
41df5bc
cleanup
Dec 13, 2023
1a5cdab
Merge branch 'ca-pub-restrictions' into develop
Dec 13, 2023
58556f5
pub restrictions fix
Dec 13, 2023
c60776d
merge pub restrictions
Dec 13, 2023
7ca0288
optimize bitstring padding
Dec 16, 2023
14a7edf
Merge branch 'lazy-decoding' into develop
Dec 16, 2023
9160114
Merge remote-tracking branch 'upstream/master'
Apr 16, 2024
310ae4d
3.2.0
Apr 16, 2024
cae4e3c
3.2.1-SNAPSHOT
Apr 16, 2024
c80ab0c
Merge remote-tracking branch 'upstream/master'
Jul 1, 2024
23c4ece
Merge branch 'master' into tx-fl-or-mt
Jul 24, 2024
7046b7b
fl mt or tx
Jul 26, 2024
0a9d59a
Resolve merge conflicts
Mar 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ public UsOr getUsOrSection() {
public UsTx getUsTxSection() {
return (UsTx) getSection(UsTx.NAME);
}

public List<Integer> getSectionIds() {
if (!this.decoded) {
this.sections = this.decodeModel(this.encodedString);
Expand Down