| 122 | } |
| 123 | |
| 124 | static Array * encodedComponents(Array * components) |
| 125 | { |
| 126 | Array * result; |
| 127 | |
| 128 | result = Array::array(); |
| 129 | for(unsigned int i = 0 ; i < components->count() ; i ++) { |
| 130 | String * value = (String *) components->objectAtIndex(i); |
| 131 | result->addObject(value->mUTF7EncodedString()); |
| 132 | } |
| 133 | |
| 134 | return result; |
| 135 | } |
| 136 | |
| 137 | static Array * decodedComponents(Array * components) |
| 138 | { |
no test coverage detected