Skip to content

Commit

Permalink
Removed two unnecessary dialogs during import/export logic
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandKoenig committed Nov 6, 2020
1 parent 4cb91f7 commit 386460a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ where actLine.DoExport
}, "dataPackage" );
if (string.IsNullOrEmpty(fileName))
{
await srvMessageBox.ShowAsync("Export", "No file selected!", MessageBoxButtons.Ok);
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public ImportViewService(DialogHostControl host)

if (string.IsNullOrEmpty(fileToImport))
{
await srvMessageBox.ShowAsync("Import", "No file selected!", MessageBoxButtons.Ok);
return null;
}

Expand Down

0 comments on commit 386460a

Please sign in to comment.