Merge "Use this.isUp() inside InterfaceConfiguration" am: 239df3cc5a am: c6e72b30c7

am: 31ac117bef

Change-Id: If2c93c4affbdb3c1f27f874c509147f2cf50337f
This commit is contained in:
Christopher Wiley
2016-10-19 19:53:15 +00:00
committed by android-build-merger

View File

@@ -113,7 +113,7 @@ public class InterfaceConfiguration implements Parcelable {
*/
public boolean isActive() {
try {
if (hasFlag(FLAG_UP)) {
if (isUp()) {
for (byte b : mAddr.getAddress().getAddress()) {
if (b != 0) return true;
}