diff options
Diffstat (limited to 'tests/telephonytests')
-rw-r--r-- | tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java b/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java index b8f0568..761dfc7 100644 --- a/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java +++ b/tests/telephonytests/src/com/android/internal/telephony/TestPhoneNotifier.java @@ -20,6 +20,8 @@ import com.android.internal.telephony.Phone; import com.android.internal.telephony.PhoneConstants; import android.telephony.CellInfo; +import java.util.List; + /** * Stub class used for unit tests */ @@ -62,6 +64,6 @@ public class TestPhoneNotifier implements PhoneNotifier { public void notifyOtaspChanged(Phone sender, int otaspMode) { } - public void notifyCellInfo(Phone sender, CellInfo cellInfo) { + public void notifyCellInfo(Phone sender, List<CellInfo> cellInfo) { } } |