Skip to content

Commit 6a0f19f

Browse files
committed
Fix CA2200, don't rethrow exceptions
1 parent 9df52cf commit 6a0f19f

File tree

1 file changed

+1
-1
lines changed
  • Samples/SceneGraph/Demos/MaterialCreator/MaterialCreatorApp/Model/Layers

1 file changed

+1
-1
lines changed

Samples/SceneGraph/Demos/MaterialCreator/MaterialCreatorApp/Model/Layers/ImageLayer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private async Task<StorageFile> LoadFromFilePath(string filePath)
126126
}
127127
else
128128
{
129-
throw e;
129+
throw;
130130
}
131131
}
132132
}

0 commit comments

Comments
 (0)