OID firstIndex = (OID) nlmLogEntries.remove(0);
if (firstIndex != null) {
nlmLogEntry.removeRow(firstIndex);
((DefaultMOMutableTableModel)
nlmLogVariableEntryModel).removeRows(firstIndex, firstIndex.nextPeer());
NlmStatsLogEntryRow statsRow = (NlmStatsLogEntryRow)
nlmStatsLogEntryModel.getRow(firstIndex.trim());
if (statsRow != null) {
statsRow.getNlmStatsLogNotificationsBumped().increment();
}
((Counter32)nlmStatsGlobalNotificationsBumped.getValue()).increment();
if (profileName != null) {
NlmStatsLogEntryRow profile = (NlmStatsLogEntryRow)
nlmStatsLogEntry.getModel().getRow(profileName.toSubIndex(false));
if (profile != null) {
profile.getNlmStatsLogNotificationsBumped().increment();
}
}
}
}
}