diff options
author | Michael Wright <michaelwr@google.com> | 2020-03-18 20:07:05 +0000 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2020-03-18 20:07:05 +0000 |
commit | 0e0734c77357c536b0a69d7b23e5b312f26d1563 (patch) | |
tree | 8f21009f1dfa5f29cd4d9ad797f7d7e1a65e294f /wifi/java | |
parent | 962b460f1c1d8bb93926fa86b215cffb4265715e (diff) |
Make ScanResult final.
While normally this would be a breaking API change, since we never
actually exposed a constructor for this class it's safe to mark it as
final.
Bug: 149912516
Test: Builds
Change-Id: I5555a17d98ebe8c61064ef64e508f707aff4eeb7
Diffstat (limited to 'wifi/java')
-rw-r--r-- | wifi/java/android/net/wifi/ScanResult.java | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |