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

Fixes: 199767031
Test: manual
Change-Id: I01f1eed3edd67095e25ce30c03fab77272688f2b
This commit is contained in:
Jeff DeCew
2021-09-10 20:01:10 +00:00
parent b13b07d941
commit 336b5d25fc

View File

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