Skip to content

Commit

Permalink
Remove unused channelIdAndName variable from loop
Browse files Browse the repository at this point in the history
The line `std::tuple<std::string, std::tuple<bool, std::string>> channelIdAndName;` has been removed from the loop that processes channel display settings. This indicates that the variable `channelIdAndName` is no longer necessary or its usage has been refactored out of this section of the code.
  • Loading branch information
ptahmose committed Aug 13, 2024
1 parent 35d3a35 commit 3b9b522
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Src/libCZI/CziMetadataBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,6 @@ static bool TryRetrieveIdAndNameAttributeFromChannels(IXmlNodeRw* root, int chan
{
auto channel_display_settings = display_settings->GetChannelDisplaySettings(c);
auto channel_node = display_settings_channel_node->AppendChildNode("Channel");
std::tuple<std::string, std::tuple<bool, std::string>> channelIdAndName;
if (channel_display_settings)
{
CoerceAdditionalInfoForChannelDisplaySettings coerce_additional_info;
Expand Down

0 comments on commit 3b9b522

Please sign in to comment.