From 59356594d29fff07c8ab05d32ab32a721cd142c8 Mon Sep 17 00:00:00 2001 From: Nathan Harold Date: Tue, 10 Jul 2018 13:38:23 -0700 Subject: [PATCH] Remove Duplicate Override for Operator Alphas These methods override the base class methods and don't actually add any value. Removing them as redundant. Bug: 76153768 Test: telephony unit test - testCellIdentityTdscdma() Change-Id: I98200a7198e182e6279851c51082bf625ee09fe9 --- .../telephony/CellIdentityTdscdma.java | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/telephony/java/android/telephony/CellIdentityTdscdma.java b/telephony/java/android/telephony/CellIdentityTdscdma.java index feff238092d41..b99fe466ec461 100644 --- a/telephony/java/android/telephony/CellIdentityTdscdma.java +++ b/telephony/java/android/telephony/CellIdentityTdscdma.java @@ -16,7 +16,6 @@ package android.telephony; -import android.annotation.Nullable; import android.os.Parcel; import java.util.Objects; @@ -135,28 +134,6 @@ public final class CellIdentityTdscdma extends CellIdentity { return mUarfcn; } - /** - * @return The long alpha tag associated with the current scan result (may be the operator - * name string or extended operator name string). May be null if unknown. - * - * @hide - */ - @Nullable - public CharSequence getOperatorAlphaLong() { - return mAlphaLong; - } - - /** - * @return The short alpha tag associated with the current scan result (may be the operator - * name string or extended operator name string). May be null if unknown. - * - * @hide - */ - @Nullable - public CharSequence getOperatorAlphaShort() { - return mAlphaShort; - } - @Override public boolean equals(Object other) { if (this == other) {