use of teammates.ui.template.AdminEmailTableRow in project teammates by TEAMMATES.
the class AdminEmailLogPageData method initLogsAsTemplateRows.
private void initLogsAsTemplateRows(List<EmailLogEntry> entries) {
logs = new ArrayList<>();
for (EmailLogEntry entry : entries) {
AdminEmailTableRow row = new AdminEmailTableRow(entry);
logs.add(row);
}
}
Aggregations