Revert "Unhide IpPrefix(InetAddress, int)" am: 758ead6dd3

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Connectivity/+/1927303

Change-Id: If3840f48333e48895701b12f201e34166e3a3136
This commit is contained in:
Ayush Sharma
2021-12-16 15:16:53 +00:00
committed by Automerger Merge Worker
4 changed files with 3 additions and 4 deletions

View File

@@ -122,9 +122,6 @@ public class IpPrefixTest {
p = new IpPrefix("[2001:db8::123]/64");
assertEquals("2001:db8::/64", p.toString());
p = new IpPrefix(InetAddresses.parseNumericAddress("::128"), 64);
assertEquals("::/64", p.toString());
}
@Test