Skip to content
Snippets Groups Projects
Commit 2ef6dd34 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

fix use of deprecated method

parent cb6256db
No related branches found
No related tags found
No related merge requests found
...@@ -300,7 +300,7 @@ public class CropDialog extends JDialog ...@@ -300,7 +300,7 @@ public class CropDialog extends JDialog
final int x = 0; final int x = 0;
final int y = 0; final int y = 0;
final int z = - d / 2; final int z = - d / 2;
final RealInterval cropInterval = Intervals.createMinSizeReal( x, y, z, w, h, d ); final RealInterval cropInterval = Intervals.createMinSize( x, y, z, w, h, d );
// list of timepoints of the original sequence // list of timepoints of the original sequence
final List< TimePoint > sequenceTimepointsOrdered = sequenceDescription.getTimePoints().getTimePointsOrdered(); final List< TimePoint > sequenceTimepointsOrdered = sequenceDescription.getTimePoints().getTimePointsOrdered();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment