Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0a6f648 authored by William Escande's avatar William Escande
Browse files

Follow error prone recommendation

```
In GsmAlphabet.java
28: warning: [InvalidInlineTag] Tag name `hide` is unknown.
 * {@hide}
   ^
312: warning: [InvalidBlockTag] Tag name `context` is unknown
     * @context the context to use to get the TelephonyManager
       ^
```

Bug: 236759221
Test: m RUN_ERROR_PRONE=true Bluetooth
Change-Id: If2d7b3cb555a82528a892f5354344d59937437dc
parent fb8ac43c
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ import android.util.SparseIntArray;
 * the GSM SMS 7-bit alphabet specified in TS 23.038 6.2.1
 * and UTF-16
 *
 * {@hide}
 * @hide
 */
public class GsmAlphabet {
    private static final String TAG = "GSM";
@@ -309,7 +309,6 @@ public class GsmAlphabet {

    /**
     * Enable country-specific language tables from MCC-specific overlays.
     * @context the context to use to get the TelephonyManager
     */
    private static void enableCountrySpecificEncodings() {
        Resources r = Resources.getSystem();