mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
Remove redundant assignment
This commit is contained in:
@@ -18,10 +18,9 @@ namespace Espresso.Shell.Core
|
|||||||
{
|
{
|
||||||
for (int i = 0; i < retries; i++)
|
for (int i = 0; i < retries; i++)
|
||||||
{
|
{
|
||||||
FileStream fileStream = null;
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
fileStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.None);
|
FileStream fileStream = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.None);
|
||||||
return fileStream;
|
return fileStream;
|
||||||
}
|
}
|
||||||
catch (IOException ex)
|
catch (IOException ex)
|
||||||
|
|||||||
Reference in New Issue
Block a user