| 480 | } |
| 481 | |
| 482 | Variant ImportInfoModern::get_param(const String &p_key) const { |
| 483 | if (!cf->has_section_key("params", p_key)) { |
| 484 | return Variant(); |
| 485 | } |
| 486 | return cf->get_value("params", p_key); |
| 487 | } |
| 488 | |
| 489 | void ImportInfoModern::set_param(const String &p_key, const Variant &p_val) { |
| 490 | // erase the dummy value if it exists, it's no longer needed |
no test coverage detected