|
location += elementLength; |
location is an argument to this constructor and so it being incremented won’t be seen outside this constructor.
location getting updated doesn't seem to be used anywhere else in the constructor.
Was a member variable wanted??
Is location really not needed after the constructor?
bioformats/components/formats-bsd/src/loci/formats/dicom/DicomTag.java
Line 353 in 682bc7e
location is an argument to this constructor and so it being incremented won’t be seen outside this constructor.
location getting updated doesn't seem to be used anywhere else in the constructor.
Was a member variable wanted??
Is location really not needed after the constructor?