| 42 | } |
| 43 | |
| 44 | ItemDescriptor ItemDescriptor::loadStore(Json const& spec) { |
| 45 | auto versioningDatabase = Root::singleton().versioningDatabase(); |
| 46 | return ItemDescriptor{versioningDatabase->loadVersionedJson(VersionedJson::fromJson(spec), "Item")}; |
| 47 | } |
| 48 | |
| 49 | String const& ItemDescriptor::name() const { |
| 50 | return m_name; |
nothing calls this directly
no test coverage detected