New pipeline: Section manager is old pipeline, so don't call it for the new.

Fixes: 204127880
Bug: 199767031
Test: manual
Merged-In: I01f1eed3edd67095e25ce30c03fab77272688f2b
Change-Id: I01f1eed3edd67095e25ce30c03fab77272688f2b
This commit is contained in:
Jeff DeCew
2021-09-10 20:01:10 +00:00
parent 53f489d7b0
commit 61499496b1

View File

@@ -1300,6 +1300,9 @@ public class NotificationStackScrollLayoutController {
} }
public void updateSectionBoundaries(String reason) { public void updateSectionBoundaries(String reason) {
if (mFeatureFlags.isNewNotifPipelineRenderingEnabled()) {
return;
}
mView.updateSectionBoundaries(reason); mView.updateSectionBoundaries(reason);
} }