()
| 525 | |
| 526 | //#ifdef LOGROTATE |
| 527 | public final boolean deleteOldMessages() { |
| 528 | int limit = cf.msglistLimit; |
| 529 | if (msgs.size() < limit) { |
| 530 | return false; |
| 531 | } |
| 532 | |
| 533 | int trash = msgs.size() - limit; |
| 534 | for (int i = 0; i < trash; i++) { |
| 535 | msgs.removeElementAt(0); |
| 536 | } |
| 537 | |
| 538 | return true; |
| 539 | } |
| 540 | //#endif |
| 541 | |
| 542 | public final void setSortKey(String sortKey) { |