Skip to content

Commit

Permalink
fix code smells
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Jun 5, 2023
1 parent ed17fed commit 52a423e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/TaskManager/Plug-ins/Email/EmailPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,10 @@ private async Task<Dictionary<string, List<string>>> AddRawMetaFromFile(Dictiona
{
tag = DicomTag.Parse(item);
}
catch (Exception) { }
catch (Exception)
{
//empty on purpose
}
}
if (tag is not null)
{
Expand All @@ -201,7 +204,7 @@ private async Task<Dictionary<string, List<string>>> AddRawMetaFromFile(Dictiona
else
{
metadata.Add(item, new List<string> { value });
};
}
}
}
}
Expand Down

0 comments on commit 52a423e

Please sign in to comment.