| 88 | } |
| 89 | |
| 90 | string Util::ConvertFromCanonicalToJniName(const string &name) { |
| 91 | string converted = name; |
| 92 | replace(converted.begin(), converted.end(), '.', '/'); |
| 93 | return converted; |
| 94 | } |
| 95 | |
| 96 | string Util::ReplaceAll(string &str, const string &from, const string &to) { |
| 97 | if (from.empty()) { |