Skip to content
Snippets Groups Projects
Commit c4477887 authored by tpylak's avatar tpylak
Browse files

bugfix: allow to upload last tile in biozenter uploader

SVN: 17844
parent 444e708a
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ class TileMapper
assert StringUtils.isNotBlank(mappingString);
assert geometry != null;
int max = geometry.getColumns() * geometry.getRows() - 1;
int max = geometry.getColumns() * geometry.getRows();
String[] rows = StringUtils.split(mappingString, ";");
if (rows == null || rows.length != geometry.getRows())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment