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

Commit 70e21e61 authored by Andreas Gampe's avatar Andreas Gampe
Browse files

Frameworks/base: Fix a constructor

The constructor of RecoverySystem was accidentally made public
before. @Removed it.

Bug: 19797138
Change-Id: I4c7bba99695a3aeb56da9c126125c3e9075c0181
parent 3756b409
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -22894,7 +22894,6 @@ package android.os {
  }
  public class RecoverySystem {
    ctor public RecoverySystem();
    method public static void installPackage(android.content.Context, java.io.File) throws java.io.IOException;
    method public static void rebootWipeCache(android.content.Context) throws java.io.IOException;
    method public static void rebootWipeUserData(android.content.Context) throws java.io.IOException;
+4 −0
Original line number Diff line number Diff line
@@ -26,6 +26,10 @@ package android.os {
    method public void wakeUp(long);
  }

  public class RecoverySystem {
    ctor public RecoverySystem();
  }

  public class UserManager {
    method public android.graphics.drawable.Drawable getBadgedDrawableForUser(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
    method public android.graphics.drawable.Drawable getBadgedIconForUser(android.graphics.drawable.Drawable, android.os.UserHandle);
+0 −1
Original line number Diff line number Diff line
@@ -24685,7 +24685,6 @@ package android.os {
  }
  public class RecoverySystem {
    ctor public RecoverySystem();
    method public static void installPackage(android.content.Context, java.io.File) throws java.io.IOException;
    method public static void rebootWipeCache(android.content.Context) throws java.io.IOException;
    method public static void rebootWipeUserData(android.content.Context) throws java.io.IOException;
+4 −0
Original line number Diff line number Diff line
@@ -26,6 +26,10 @@ package android.os {
    method public void wakeUp(long);
  }

  public class RecoverySystem {
    ctor public RecoverySystem();
  }

  public class UserManager {
    method public android.graphics.drawable.Drawable getBadgedDrawableForUser(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int);
    method public android.graphics.drawable.Drawable getBadgedIconForUser(android.graphics.drawable.Drawable, android.os.UserHandle);
+5 −1
Original line number Diff line number Diff line
@@ -513,5 +513,9 @@ public class RecoverySystem {
        return arg;
    }

    private void RecoverySystem() { }  // Do not instantiate

    /**
     * @removed Was previously made visible by accident.
     */
    public RecoverySystem() { }
}