ome/bioformats

Strings are being compared with == and !=

scuniff opened this issue · 1 comments

2 occurrences where 2 Strings are being compared with == and !=.

They should be using String.equals()

should be?

Line 218 if (id.equals(lastId)) continue;
Line 263 if (!id.equals(loadId)) {

Thanks, as ever, @scuniff