Fixed double-negative typo.

This commit is contained in:
U-BASIS\dgrove 2018-03-20 10:49:47 -04:00
parent 172d955b72
commit 9f72ca17aa

View File

@ -407,7 +407,7 @@ final class LocalDiskPanel extends JPanel {
}
private boolean imageWriterPathIsValid() {
if ((!copyImageCheckbox.isSelected()) || !(localDisk != null)) {
if ((!copyImageCheckbox.isSelected()) || localDisk == null) {
imageWriterErrorLabel.setVisible(false);
imageWriterErrorLabel.setText("");
return true;