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

Commit 5613fdb0 authored by Wale Ogunwale's avatar Wale Ogunwale
Browse files

Fixed build breakage

Not sure why this caused a build breakage since it build locally
and also on TH. Commenting out for now and will investigate later.

Test: builds
Change-Id: I8d6e475b1bad02f8b8461790381e63aff03a28ec
parent 687b4273
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -111,7 +111,8 @@ public abstract class ConfigurationContainer<E extends ConfigurationContainer> {
    }

    /** Sets the windowing mode for the configuration container. */
    void setWindowingMode(@WindowConfiguration.WindowingMode int windowingMode) {
    void setWindowingMode(/*@WindowConfiguration.WindowingMode TODO: causes build error...why?*/
            int windowingMode) {
        mOverrideConfiguration.windowConfiguration.setWindowingMode(windowingMode);
        onOverrideConfigurationChanged(mOverrideConfiguration);
    }