Skip to content

Commit 22046a3

Browse files
cpovirkGoogle Java Core Libraries
authored andcommitted
Prepare for the removal of blogspot.* ccTLD domains from the Public Suffix List.
For background, see publicsuffix/list#2327. RELNOTES=n/a PiperOrigin-RevId: 716721293
1 parent 3b077bc commit 22046a3

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ public final class InternetDomainNameTest extends TestCase {
125125
"xn--jrpeland-54a.no" // IDNA (punycode) encoding of above
126126
);
127127

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

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

guava-tests/test/com/google/common/net/InternetDomainNameTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ public final class InternetDomainNameTest extends TestCase {
125125
"xn--jrpeland-54a.no" // IDNA (punycode) encoding of above
126126
);
127127

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

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

0 commit comments

Comments
 (0)