diff options
| author | 2020-03-20 19:02:10 +0000 | |
|---|---|---|
| committer | 2020-03-20 19:02:10 +0000 | |
| commit | b99ba10beceb1dc0fa643a217e4ac50109f83fff (patch) | |
| tree | 05e11e8bcffd10d3335f33a7b90da5f37c1df568 | |
| parent | 054a8136bd74a63561a1e5432fda2b59105aee57 (diff) | |
| parent | 0e0734c77357c536b0a69d7b23e5b312f26d1563 (diff) | |
Merge "Make ScanResult final." into rvc-dev
| -rw-r--r-- | api/current.txt | 2 | ||||
| -rwxr-xr-x | api/system-current.txt | 2 | ||||
| -rw-r--r-- | api/system-removed.txt | 2 | ||||
| -rw-r--r-- | wifi/api/current.txt | 2 | ||||
| -rw-r--r-- | wifi/api/system-current.txt | 2 | ||||
| -rw-r--r-- | wifi/api/system-removed.txt | 2 | ||||
| -rw-r--r-- | wifi/java/android/net/wifi/ScanResult.java | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/api/current.txt b/api/current.txt index 2d1401880409..507603d002d6 100644 --- a/api/current.txt +++ b/api/current.txt @@ -31110,7 +31110,7 @@ package android.net.wifi { field public static final int EASY_CONNECT_EVENT_FAILURE_TIMEOUT = -6; // 0xfffffffa } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { ctor public ScanResult(@NonNull android.net.wifi.ScanResult); ctor public ScanResult(); method public int describeContents(); diff --git a/api/system-current.txt b/api/system-current.txt index 50900aa3e697..ed2ebdd2bb55 100755 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -7066,7 +7066,7 @@ package android.net.wifi { field @Deprecated public byte id; } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { field public static final int CIPHER_CCMP = 3; // 0x3 field public static final int CIPHER_GCMP_256 = 4; // 0x4 field public static final int CIPHER_NONE = 0; // 0x0 diff --git a/api/system-removed.txt b/api/system-removed.txt index 23e2499236b3..3acc22528438 100644 --- a/api/system-removed.txt +++ b/api/system-removed.txt @@ -136,7 +136,7 @@ package android.net.wifi { field public boolean truncated; } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { field public boolean untrusted; } diff --git a/wifi/api/current.txt b/wifi/api/current.txt index 1b62ec14c504..53c3b33d9845 100644 --- a/wifi/api/current.txt +++ b/wifi/api/current.txt @@ -16,7 +16,7 @@ package android.net.wifi { field public static final int EASY_CONNECT_EVENT_FAILURE_TIMEOUT = -6; // 0xfffffffa } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { ctor public ScanResult(@NonNull android.net.wifi.ScanResult); ctor public ScanResult(); method public int describeContents(); diff --git a/wifi/api/system-current.txt b/wifi/api/system-current.txt index 150a6500745c..e39e148ca2b4 100644 --- a/wifi/api/system-current.txt +++ b/wifi/api/system-current.txt @@ -208,7 +208,7 @@ package android.net.wifi { field @Deprecated public byte id; } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { field public static final int CIPHER_CCMP = 3; // 0x3 field public static final int CIPHER_GCMP_256 = 4; // 0x4 field public static final int CIPHER_NONE = 0; // 0x0 diff --git a/wifi/api/system-removed.txt b/wifi/api/system-removed.txt index 35f9726d30fc..a2d0dff3e712 100644 --- a/wifi/api/system-removed.txt +++ b/wifi/api/system-removed.txt @@ -8,7 +8,7 @@ package android.net.wifi { field public boolean truncated; } - public class ScanResult implements android.os.Parcelable { + public final class ScanResult implements android.os.Parcelable { field public boolean untrusted; } diff --git a/wifi/java/android/net/wifi/ScanResult.java b/wifi/java/android/net/wifi/ScanResult.java index 727952c1938c..f5b56225b8e5 100644 --- a/wifi/java/android/net/wifi/ScanResult.java +++ b/wifi/java/android/net/wifi/ScanResult.java @@ -38,7 +38,7 @@ import java.util.Objects; * {@code quality}, {@code noise}, and {@code maxbitrate} attributes, * but does not currently report them to external clients. */ -public class ScanResult implements Parcelable { +public final class ScanResult implements Parcelable { /** * The network name. */ |