diff options
Diffstat (limited to 'services/java/com/android/server/ThrottleService.java')
-rw-r--r-- | services/java/com/android/server/ThrottleService.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/services/java/com/android/server/ThrottleService.java b/services/java/com/android/server/ThrottleService.java index ccfc99bee083..d841cb3a7766 100644 --- a/services/java/com/android/server/ThrottleService.java +++ b/services/java/com/android/server/ThrottleService.java @@ -160,7 +160,7 @@ public class ThrottleService extends IThrottleManager.Stub { mIface = iface; } - public void interfaceStatusChanged(String iface, boolean link) { + public void interfaceLinkStatusChanged(String iface, boolean link) { if (link) { if (TextUtils.equals(iface, mIface)) { mHandler.obtainMessage(mMsg).sendToTarget(); @@ -176,8 +176,6 @@ public class ThrottleService extends IThrottleManager.Stub { } } - public void interfaceLinkStateChanged(String iface, boolean linkState) {} - public void interfaceRemoved(String iface) {} } |