mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
Fixed double-negative typo.
This commit is contained in:
parent
172d955b72
commit
9f72ca17aa
@ -407,7 +407,7 @@ final class LocalDiskPanel extends JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean imageWriterPathIsValid() {
|
private boolean imageWriterPathIsValid() {
|
||||||
if ((!copyImageCheckbox.isSelected()) || !(localDisk != null)) {
|
if ((!copyImageCheckbox.isSelected()) || localDisk == null) {
|
||||||
imageWriterErrorLabel.setVisible(false);
|
imageWriterErrorLabel.setVisible(false);
|
||||||
imageWriterErrorLabel.setText("");
|
imageWriterErrorLabel.setText("");
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user