scuniff opened this issue 8 months ago · 1 comments
2 occurrences where 2 Strings are being compared with == and !=.
They should be using String.equals()
bioformats/components/formats-bsd/src/loci/formats/gui/PreviewPane.java
Line 218 in 6fa35f6
Line 263 in 6fa35f6
should be?
Line 218 if (id.equals(lastId)) continue; Line 263 if (!id.equals(loadId)) {
Thanks, as ever, @scuniff