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

Commit c7e24440 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Use S api in SettingsShim api 31" into sc-dev

parents 825ebc0e c961014e
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -48,9 +48,7 @@ public class SettingsShimImpl
    public boolean checkAndNoteWriteSettingsOperation(@NonNull Context context, int uid,
            @NonNull String callingPackage, @Nullable String callingAttributionTag,
            boolean throwException) {
        // Since checkAndNoteWriteSettingsOperation with callingAttributionTag (S method) is not
        // available in AOSP, calling R method (same as API 30 shim) temporary.
        return Settings.checkAndNoteWriteSettingsOperation(context, uid, callingPackage,
                throwException);
                callingAttributionTag, throwException);
    }
}