Skip to content

Commit

Permalink
Merge pull request #471 from J-N-K/fixlegalorg
Browse files Browse the repository at this point in the history
Fix LegalOrganisation schemeId
  • Loading branch information
jstaerk authored Sep 20, 2024
2 parents 1dc66b0 + a954b28 commit 3b352b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public LegalOrganisation() {
}

public LegalOrganisation(String ID, String scheme) {
this.schemedID = new SchemedID(ID, scheme);
this.schemedID = new SchemedID(scheme, ID);
}

public LegalOrganisation(SchemedID schemedID, String tradingBusinessName) {
Expand Down

0 comments on commit 3b352b3

Please sign in to comment.