mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 00:48:23 -06:00
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:
parent
04676bd31a
commit
6a8b2d10f0
@ -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!
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user