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

Commit 0d431f7d authored by d34d's avatar d34d Committed by Steve Kondik
Browse files

Themes: Don't break API in MockContext

recreateTheme() needs to have @hide otherwise checkapi fails.

Change-Id: I90a8620724a5ca8a52bce4bd91bd5534812479b1
parent 8e98622a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -97,6 +97,7 @@ public class MockContext extends Context {
        throw new UnsupportedOperationException();
    }

    /** @hide */
    @Override
    public void recreateTheme() {
        throw new UnsupportedOperationException();
@@ -645,8 +646,6 @@ public class MockContext extends Context {
    @Override
    public File[] getExternalFilesDirs(String type) {
        throw new UnsupportedOperationException();
    }

    @Override
    public File[] getObbDirs() {
        throw new UnsupportedOperationException();
@@ -661,4 +660,6 @@ public class MockContext extends Context {
    public File[] getExternalMediaDirs() {
        throw new UnsupportedOperationException();
    }


}