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

Commit ab687f2d authored by Wale Ogunwale's avatar Wale Ogunwale
Browse files

Fix build breakage.

The code is some how triggering a compiler bug.

Test: N/A
Change-Id: If4eef989027a70c388cbcd311e5de4da76bae329
parent 2e412187
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -120,7 +120,8 @@ public abstract class ConfigurationContainer<E extends ConfigurationContainer> {
    }

    /** Sets the windowing mode for the configuration container. */
    public void setWindowingMode(@WindowConfiguration.WindowingMode int windowingMode) {
    public void setWindowingMode(/* @WindowConfiguration.WindowingMode...triggers Jack compiler bug...*/
            int windowingMode) {
        mOverrideConfiguration.windowConfiguration.setWindowingMode(windowingMode);
        onOverrideConfigurationChanged(mOverrideConfiguration);
    }