Skip to content

Commit

Permalink
PdfCopy -> var
Browse files Browse the repository at this point in the history
  • Loading branch information
olopatnov-bbapp committed Mar 26, 2019
1 parent ae830be commit 65cbc9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PdfConcatenator/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void generateButton_Click(object sender, EventArgs e)

Document document = new Document();
var output = new FileStream(outputFile, FileMode.Create);
using (PdfCopy copy = new PdfSmartCopy(document, output))
using (var copy = new PdfSmartCopy(document, output))
{
document.Open();
foreach (var arg in files)
Expand Down

0 comments on commit 65cbc9f

Please sign in to comment.