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

Commit 00657b89 authored by Arthur Hung's avatar Arthur Hung
Browse files

Rename createPrebaked to createPredefined

Bug: 126179814
Test: manual
Change-Id: I5536ed6c43b6f6b2e6891200af2043280a1c55bc
parent d057e233
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35510,7 +35510,7 @@ package android.os {
  public abstract class VibrationEffect implements android.os.Parcelable {
    method public static android.os.VibrationEffect createOneShot(long, int);
    method public static android.os.VibrationEffect createPrebaked(int);
    method public static android.os.VibrationEffect createPredefined(int);
    method public static android.os.VibrationEffect createWaveform(long[], int);
    method public static android.os.VibrationEffect createWaveform(long[], int[], int);
    method public int describeContents();
+1 −1
Original line number Diff line number Diff line
@@ -240,7 +240,7 @@ public abstract class VibrationEffect implements Parcelable {
     *
     * @return The desired effect.
     */
    public static VibrationEffect createPrebaked(@EffectType int effectId) {
    public static VibrationEffect createPredefined(@EffectType int effectId) {
        return get(effectId, true);
    }