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

Commit 518e22a5 authored by Jonas Larsson's avatar Jonas Larsson
Browse files

@hide getLongArray to make checkapi-current happy

Cosmetic fix. Otherwise it barfs with
error 4: Added public method android.provider.Settings.System.getLongArray
You have tried to change the API from what has been previously approved.

Change-Id: I3bc0c15415f9dec52fb7c717ba925a036decbd24
parent 98847a8f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -945,6 +945,7 @@ public final class Settings {
         *
         * @return The setting's current value, or 'def' if it is not defined
         * or not a valid {@code long}.
         * @hide
         */
        public static long[] getLongArray(ContentResolver cr, String name, long[] def) {
            String valString = getString(cr, name);
@@ -974,6 +975,7 @@ public final class Settings {
         * @return The setting's current value.
         * @throws SettingNotFoundException Thrown if a setting by the given
         * name can't be found or the setting value is not a long array.
         * @hide
         */
        public static long[] getLongArray(ContentResolver cr, String name)
                throws SettingNotFoundException {