Revert "GP-6299: Bail from getPreviousLayout if there are no layouts."

This reverts commit 02c51234f4.
This commit is contained in:
Ryan Kurtz
2026-01-13 09:38:34 -05:00
parent e3dc18ee70
commit 2c99fbe7f6
@@ -196,9 +196,6 @@ public class AnchoredLayoutHandler {
if (layout != null) { if (layout != null) {
return new AnchoredLayout(layout, index, yPos - layout.getHeight()); return new AnchoredLayout(layout, index, yPos - layout.getHeight());
} }
if (layouts.isEmpty()) {
return null;
}
} }
return null; return null;
} }