chore: remove extra semicolons from ActionArgs (#19411)

Removes unnecessary extra semicolons at the end of `Equals` method
implementations in various ActionArgs classes.

Closes #19404
This commit is contained in:
Faisal Ahmad 2025-10-07 23:05:38 +05:30 committed by GitHub
parent 04676bd31a
commit 6a8b2d10f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -606,7 +606,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
return otherAsUs->_ContentArgs.Equals(_ContentArgs);
}
return false;
};
}
static FromJsonResult FromJson(const Json::Value& json)
{
// LOAD BEARING: Not using make_self here _will_ break you in the future!
@ -707,7 +707,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
otherAsUs->_SplitMode == _SplitMode;
}
return false;
};
}
static FromJsonResult FromJson(const Json::Value& json)
{
// LOAD BEARING: Not using make_self here _will_ break you in the future!
@ -835,7 +835,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
return otherAsUs->_ContentArgs.Equals(_ContentArgs);
}
return false;
};
}
static FromJsonResult FromJson(const Json::Value& json)
{
// LOAD BEARING: Not using make_self here _will_ break you in the future!
@ -985,7 +985,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
return otherAsUs->_Actions == _Actions;
}
return false;
};
}
static FromJsonResult FromJson(const Json::Value& json)
{
// LOAD BEARING: Not using make_self here _will_ break you in the future!