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

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

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);