Fixed problem with that not all entries were shown ...

This commit is contained in:
ebner 2014-10-09 16:38:10 +02:00
parent c276603087
commit e9d73ffde8
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ch.psi</groupId>
<artifactId>imagej.hdf5</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
<dependencies>
<dependency>

View File

@ -64,6 +64,7 @@ public class HDF5Reader implements PlugIn {
H5File file = null;
try {
file = new H5File(filename, H5File.READ);
file.setMaxMembers(Integer.MAX_VALUE);
file.open();
List<Dataset> datasets = HDF5Utilities.getDatasets(file);