Skip to content

Commit

Permalink
Removes duplicate section in the GppModel.decodeSection if tree as Us…
Browse files Browse the repository at this point in the history
…pV1 was in the list twice. (InteractiveAdvertisingBureau#30)
  • Loading branch information
SuprPhatAnon authored Aug 29, 2023
1 parent fe36352 commit b4ce06d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,6 @@ public void decodeSection(String sectionName, String encodedString) throws Decod
} else if (sectionName.equals(UspV1.NAME)) {
section = new UspV1();
this.sections.put(UspV1.NAME, section);
} else if (sectionName.equals(UspV1.NAME)) {
section = new UspV1();
this.sections.put(UspV1.NAME, section);
} else if (sectionName.equals(UspNatV1.NAME)) {
section = new UspNatV1();
this.sections.put(UspNatV1.NAME, section);
Expand Down

0 comments on commit b4ce06d

Please sign in to comment.