Skip to content

Commit 596f4e3

Browse files
committed
Remove redundant getter call
1 parent 00858ef commit 596f4e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/glencoesoftware/bioformats2raw/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2683,7 +2683,7 @@ private Quantity getScale(
26832683
case 't':
26842684
Quantity timeIncrement = meta.getPixelsTimeIncrement(seriesIndex);
26852685
if (timeIncrement != null && timeIncrement.value().doubleValue() > 0) {
2686-
return meta.getPixelsTimeIncrement(seriesIndex);
2686+
return timeIncrement;
26872687
}
26882688
else {
26892689
return null;

0 commit comments

Comments
 (0)