Skip to content

Commit

Permalink
Prepare for the removal of blogspot.* ccTLD domains from the Public…
Browse files Browse the repository at this point in the history
… Suffix List.

For background, see publicsuffix/list#2327.

RELNOTES=n/a
PiperOrigin-RevId: 716721293
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Jan 17, 2025
1 parent 3b077bc commit 22046a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ public final class InternetDomainNameTest extends TestCase {
"xn--jrpeland-54a.no" // IDNA (punycode) encoding of above
);

private static final ImmutableSet<String> PS_NOT_RS =
ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
private static final ImmutableSet<String> PS_NOT_RS = ImmutableSet.of("blogspot.com", "uk.com");

private static final ImmutableSet<String> PS =
ImmutableSet.<String>builder().addAll(RS).addAll(PS_NOT_RS).build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ public final class InternetDomainNameTest extends TestCase {
"xn--jrpeland-54a.no" // IDNA (punycode) encoding of above
);

private static final ImmutableSet<String> PS_NOT_RS =
ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
private static final ImmutableSet<String> PS_NOT_RS = ImmutableSet.of("blogspot.com", "uk.com");

private static final ImmutableSet<String> PS =
ImmutableSet.<String>builder().addAll(RS).addAll(PS_NOT_RS).build();
Expand Down

0 comments on commit 22046a3

Please sign in to comment.