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

Commit a21b4a52 authored by Chad Brubaker's avatar Chad Brubaker Committed by android-build-merger
Browse files

Merge "Fix incorrect hasPerDomainConfigs check" am: c5c51daf

am: dd6d0918

* commit 'dd6d0918':
  Fix incorrect hasPerDomainConfigs check
parents 54b4b8fd dd6d0918
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ public final class ApplicationConfig {
     */
    public boolean hasPerDomainConfigs() {
        ensureInitialized();
        return mConfigs == null || !mConfigs.isEmpty();
        return mConfigs != null && !mConfigs.isEmpty();
    }

    /**