Skip to content
Snippets Groups Projects
Commit cce55938 authored by srosse's avatar srosse
Browse files

OO-2513: can really the previous row be null??

parent fa8ed19f
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,7 @@ public class PageListDataModel extends DefaultFlexiTableDataModel<PortfolioEleme
row.setNewEntry(false);
}
if(row.isAssignmentToInstantiate()) {
if(previousRow.isSection()) {
if(previousRow != null && previousRow.isSection()) {
previousRow.setSectionWithAssignmentToInstantiate(true);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment