diff options
| author | 2017-06-26 17:27:21 +0000 | |
|---|---|---|
| committer | 2017-06-26 17:27:21 +0000 | |
| commit | e30cfbea607a0d225203b006ddb1d29f21c8d994 (patch) | |
| tree | a876bebf7f78bb31b5f46279d52259eb436d9607 | |
| parent | b5af86e4443864ad60016ff4cf60c3737eb7ab4b (diff) | |
| parent | ac2d00a19538a6a1cfe7462b7c16cc9c65763d4c (diff) | |
Merge "Fix the inconsistency of scan status." am: 41be35a1bd
am: ac2d00a195
Change-Id: Ibcdbe63349031ea95d137dd18465bec5de6efd7a
| -rw-r--r-- | telephony/java/com/android/internal/telephony/NetworkScanResult.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/telephony/java/com/android/internal/telephony/NetworkScanResult.java b/telephony/java/com/android/internal/telephony/NetworkScanResult.java index df80666f913a..8b09848aec1c 100644 --- a/telephony/java/com/android/internal/telephony/NetworkScanResult.java +++ b/telephony/java/com/android/internal/telephony/NetworkScanResult.java @@ -36,10 +36,10 @@ import java.util.Objects; public final class NetworkScanResult implements Parcelable { // Contains only part of the scan result and more are coming. - public static final int SCAN_STATUS_PARTIAL = 0; + public static final int SCAN_STATUS_PARTIAL = 1; // Contains the last part of the scan result and the scan is now complete. - public static final int SCAN_STATUS_COMPLETE = 1; + public static final int SCAN_STATUS_COMPLETE = 2; // The status of the scan, only valid when scanError = SUCCESS. public int scanStatus; |