()
| 131 | } |
| 132 | |
| 133 | public int getCount() { |
| 134 | int count = 0; |
| 135 | for (int i = 0; i < size; i++) { |
| 136 | IMAPMessage msg = messages[i]; |
| 137 | if (msg == null || !msg.isExpunged()) |
| 138 | count++; |
| 139 | } |
| 140 | return count; |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Get the message object for the indicated sequence number. |
nothing calls this directly
no test coverage detected