ConnectivityManager: fix style issue

Simple style fix flagged by linter.

Test: no functional change.
Change-Id: I2cb19912cba149eeaffdd157616d210259d42959
This commit is contained in:
Hugo Benichi
2017-06-20 14:10:14 +09:00
parent 1c027fee59
commit bcc81df1d6

View File

@@ -596,7 +596,7 @@ public class ConnectivityManager {
/**
* @hide
*/
public final static int REQUEST_ID_UNSET = 0;
public static final int REQUEST_ID_UNSET = 0;
/**
* Static unique request used as a tombstone for NetworkCallbacks that have been unregistered.
@@ -604,7 +604,7 @@ public class ConnectivityManager {
* registered and those that were already unregistered.
* @hide
*/
private final static NetworkRequest ALREADY_UNREGISTERED =
private static final NetworkRequest ALREADY_UNREGISTERED =
new NetworkRequest.Builder().clearCapabilities().build();
/**