Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions ISVLicenseGenerator/ISVLicenseGeneratorForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,9 @@ private void BrowseBtn_Click(object sender, EventArgs e)
saveFileDialog.Title = "Save license";
saveFileDialog.ShowDialog();

if (!String.IsNullOrEmpty(saveFileDialog.FileName))
if (!string.IsNullOrEmpty(saveFileDialog.FileName))
{
System.IO.FileStream fs = (System.IO.FileStream)saveFileDialog.OpenFile();

PathTB.Text = saveFileDialog.FileName;

fs.Close();
}
}

Expand Down
Loading