Remove redundant assignment

This commit is contained in:
Den Delimarsky 2021-05-01 09:36:24 -07:00
parent d3face8664
commit 45e24a2605
No known key found for this signature in database
GPG key ID: E1BE1355085F0BCF

View file

@ -18,10 +18,9 @@ namespace Espresso.Shell.Core
{
for (int i = 0; i < retries; i++)
{
FileStream fileStream = null;
try
{
fileStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.None);
FileStream fileStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.None);
return fileStream;
}
catch (IOException ex)