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

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

Merge "Fix incorrect hasPerDomainConfigs check" am: c5c51daf am: dd6d0918

am: a21b4a52

* commit 'a21b4a52':
  Fix incorrect hasPerDomainConfigs check
parents 74e67e04 a21b4a52
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();
    }

    /**