From 6a8b2d10f08257459a506d700d3179d8ce74d142 Mon Sep 17 00:00:00 2001 From: Faisal Ahmad <71762204+fab-c14@users.noreply.github.com> Date: Tue, 7 Oct 2025 23:05:38 +0530 Subject: [PATCH] chore: remove extra semicolons from ActionArgs (#19411) Removes unnecessary extra semicolons at the end of `Equals` method implementations in various ActionArgs classes. Closes #19404 --- src/cascadia/TerminalSettingsModel/ActionArgs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cascadia/TerminalSettingsModel/ActionArgs.h b/src/cascadia/TerminalSettingsModel/ActionArgs.h index b6b75bd2df..e861acdad6 100644 --- a/src/cascadia/TerminalSettingsModel/ActionArgs.h +++ b/src/cascadia/TerminalSettingsModel/ActionArgs.h @@ -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!