| 133 | } |
| 134 | |
| 135 | std::string Ge0Parser::DecodeName(std::string name) |
| 136 | { |
| 137 | ValidateName(name); |
| 138 | name = url::UrlDecode(name); |
| 139 | SpacesToUnderscore(name); |
| 140 | return name; |
| 141 | } |
| 142 | |
| 143 | void Ge0Parser::SpacesToUnderscore(std::string & name) |
| 144 | { |
nothing calls this directly
no test coverage detected