Skip to content

Commit fbbfd71

Browse files
committed
Fix warning
1 parent b5bb4d5 commit fbbfd71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LibGit2Sharp/ObjectDatabase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,10 @@ private unsafe Blob CreateBlob(Stream stream, string hintpath, long? numberOfByt
315315
throw new EndOfStreamException("The stream ended unexpectedly");
316316
}
317317
}
318-
catch(Exception e)
318+
catch (Exception)
319319
{
320320
writestream.free(writestream_ptr);
321-
throw e;
321+
throw;
322322
}
323323

324324
ObjectId id = Proxy.git_blob_create_fromstream_commit(writestream_ptr);

0 commit comments

Comments
 (0)