Only the name "INBOX" is supported.
(String name)
| 494 | * Only the name "INBOX" is supported. |
| 495 | */ |
| 496 | @Override |
| 497 | public Folder getFolder(String name) throws MessagingException { |
| 498 | checkConnected(); |
| 499 | return new POP3Folder(this, name); |
| 500 | } |
| 501 | |
| 502 | @Override |
| 503 | public Folder getFolder(URLName url) throws MessagingException { |
nothing calls this directly
no test coverage detected