Skip to content

Commit

Permalink
Fix Nullpointer Exception when opening file
Browse files Browse the repository at this point in the history
  • Loading branch information
ubfx committed Oct 23, 2020
1 parent b9529dd commit b6c04c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/bindiffhelper/GeneralOpenDialog.java
Expand Up @@ -98,10 +98,10 @@ protected void okCallback() {
if (!extBDFilePanel.getFileName().isEmpty()) {
plugin.provider.openBinDiffDB(extBDFilePanel.getFileName());
}
else if (!extBEFilePanel.getFileName().isEmpty()) {
//
/*else if (!extBEFilePanel.getFileName().isEmpty()) {
}
}*/
else if (tp != null && tp.getSelectedItemCount() == 1) {
if (tp.getSelectedDomainFolder() != null) {
Msg.showError(this, getComponent(), "Error",
Expand Down

0 comments on commit b6c04c1

Please sign in to comment.