| 93 | } |
| 94 | |
| 95 | String * IMAPNamespace::pathForComponentsAndPrefix(Array * components, String * prefix) |
| 96 | { |
| 97 | IMAPNamespaceItem * item = itemForPath(prefix); |
| 98 | if (item == NULL) |
| 99 | return NULL; |
| 100 | return item->pathForComponents(components); |
| 101 | } |
| 102 | |
| 103 | Array * IMAPNamespace::componentsFromPath(String * path) |
| 104 | { |
nothing calls this directly
no test coverage detected