EffectBase: Remove unused short_name

This commit is contained in:
FeRD (Frank Dana)
2019-12-19 07:59:30 -05:00
parent 271c3908d2
commit c11b4ac266
2 changed files with 0 additions and 3 deletions

View File

@@ -87,7 +87,6 @@ Json::Value EffectBase::JsonValue() {
Json::Value root = ClipBase::JsonValue(); // get parent properties
root["name"] = info.name;
root["class_name"] = info.class_name;
root["short_name"] = info.short_name;
root["description"] = info.description;
root["has_video"] = info.has_video;
root["has_audio"] = info.has_audio;
@@ -144,7 +143,6 @@ Json::Value EffectBase::JsonInfo() {
Json::Value root;
root["name"] = info.name;
root["class_name"] = info.class_name;
root["short_name"] = info.short_name;
root["description"] = info.description;
root["has_video"] = info.has_video;
root["has_audio"] = info.has_audio;