diff options
| author | 2017-06-26 23:09:55 +0000 | |
|---|---|---|
| committer | 2017-06-26 23:10:00 +0000 | |
| commit | 231e291b06a734d7ee0bc620ef992b9bd591c3fe (patch) | |
| tree | e4bec9dcf82ab4ac5a81a46c361d624337dd21a1 | |
| parent | 59a66b8601579086f0977ef9bd53012382901b87 (diff) | |
| parent | 548475c58d78ced139596cfefb040895f14c9589 (diff) | |
Merge "Fix the inconsistency of scan status." into oc-dr1-dev
| -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 7a7c17467dae..95f39d7f878a 100644 --- a/telephony/java/com/android/internal/telephony/NetworkScanResult.java +++ b/telephony/java/com/android/internal/telephony/NetworkScanResult.java @@ -35,10 +35,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; |