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

fix compile error

parent 2181ff30
Branches
Tags
No related merge requests found
......@@ -117,9 +117,9 @@ public class XmlIoSpimDataMinimalLegacy
channels.put( channelId, channel );
}
final int w = XmlHelpers.getInt( elem, "width" );
final int h = XmlHelpers.getInt( elem, "height" );
final int d = XmlHelpers.getInt( elem, "depth" );
final long w = XmlHelpers.getInt( elem, "width" );
final long h = XmlHelpers.getInt( elem, "height" );
final long d = XmlHelpers.getInt( elem, "depth" );
final Dimensions size = new FinalDimensions( w, h, d );
final double pw = XmlHelpers.getDouble( elem, "pixelWidth" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment