Remove the isForeground check for auto expand / suppress since NoMan handles it now

- Just pass false to logger, we won't use the value

Test: atest BubbleControllerTest
Bug: 135488406
Change-Id: I72f242586fd590144bdf8299268224c63fb9247d
diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java
index af68ddb..bc2f850 100644
--- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java
+++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java
@@ -533,7 +533,7 @@
                 mStackView.getNormalizedYPosition(),
                 entry.showInShadeWhenBubble(),
                 entry.isForegroundService(),
-                BubbleController.isForegroundApp(mContext, notification.getPackageName()));
+                false /* isAppForeground (unused) */);
     }
 
     private int getDimenForPackageUser(int resId, String pkg, int userId) {