Merge "Fix TetheredClient and TetheredClientTest"
This commit is contained in:
@@ -25,7 +25,7 @@ import android.os.Parcelable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
@@ -83,7 +83,7 @@ public final class TetheredClient implements Parcelable {
|
||||
* @hide
|
||||
*/
|
||||
public TetheredClient addAddresses(@NonNull TetheredClient other) {
|
||||
final HashSet<AddressInfo> newAddresses = new HashSet<>(
|
||||
final LinkedHashSet<AddressInfo> newAddresses = new LinkedHashSet<>(
|
||||
mAddresses.size() + other.mAddresses.size());
|
||||
newAddresses.addAll(mAddresses);
|
||||
newAddresses.addAll(other.mAddresses);
|
||||
|
||||
@@ -75,7 +75,7 @@ class TetheredClientTest {
|
||||
assertNotEquals(makeTestClient(), TetheredClient(
|
||||
TEST_MACADDR,
|
||||
listOf(TEST_ADDRINFO1, TEST_ADDRINFO2),
|
||||
TETHERING_BLUETOOTH))
|
||||
TETHERING_USB))
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user