| 933 | } |
| 934 | |
| 935 | void ImportInfov2::set_additional_sources(const Vector<String> &p_add_sources) { |
| 936 | // TODO: md5s |
| 937 | for (int64_t i = 1; i < p_add_sources.size(); i++) { |
| 938 | if (v2metadata->get_source_count() >= i) { |
| 939 | v2metadata->remove_source(i); |
| 940 | } |
| 941 | v2metadata->add_source_at(p_add_sources[i], "", i); |
| 942 | } |
| 943 | dirty = true; |
| 944 | } |
| 945 | |
| 946 | Variant ImportInfov2::get_param(const String &p_key) const { |
| 947 | return v2metadata->get_option(p_key); |
nothing calls this directly
no test coverage detected