- Timestamp:
- 08/04/08 09:17:20 PM (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/LogicMail/src/org/logicprobe/LogicMail/mail/pop/PopClient.java
r264 r266 210 210 } 211 211 212 public boolean hasIdle() { 213 return false; 214 } 215 212 216 public FolderTreeItem getFolderTree() throws IOException, MailException { 213 217 return null; … … 336 340 // Undelete is not supported, so we do nothing here. 337 341 } 342 343 public void idleModeBegin() throws IOException, MailException { 344 // Idle mode is not supported, so we do nothing here. 345 } 346 347 public void idleModeEnd() throws IOException, MailException { 348 // Idle mode is not supported, so we do nothing here. 349 } 350 351 public boolean idleModePoll() throws IOException, MailException { 352 // Idle mode is not supported, so we do nothing here. 353 return false; 354 } 338 355 }
