Skip to content
Snippets Groups Projects
Commit 487893da authored by Ying Xu's avatar Ying Xu Committed by android-build-merger
Browse files

Merge "Fix the inconsistency of scan status." am: 41be35a1 am: ac2d00a1 am: e30cfbea

am: 57ad8be7

Change-Id: I2ee40a6c22a1bfe58ca107790719c5695aa7c774
parents adcd1fe0 57ad8be7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment