Skip to content
Snippets Groups Projects
Commit 7cfbf6a3 authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Make decompressed array final.

parent 34268a10
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ public class RemoteVolatileShortArrayLoader implements CacheArrayLoader<Volatile ...@@ -77,7 +77,7 @@ public class RemoteVolatileShortArrayLoader implements CacheArrayLoader<Volatile
return loadArrayFromCompressedDataStream(timepoint, setup, level, dimensions, min); return loadArrayFromCompressedDataStream(timepoint, setup, level, dimensions, min);
} }
short[] data = new short[dimensions[0] * dimensions[1] * dimensions[2]]; final short[] data = new short[dimensions[0] * dimensions[1] * dimensions[2]];
try { try {
final URL url = new URL(constructRequestUrl("cell", timepoint, setup, level, dimensions, min)); final URL url = new URL(constructRequestUrl("cell", timepoint, setup, level, dimensions, min));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment