From 981113537f3841389b7056724bf9b2a67a21ee2b Mon Sep 17 00:00:00 2001 From: Sebastien Besson Date: Fri, 28 May 2021 20:41:57 +0100 Subject: [PATCH] Remove obsolete internal API --- src/omero/hdfstorageV2.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/omero/hdfstorageV2.py b/src/omero/hdfstorageV2.py index c45fbac58..58201b09b 100644 --- a/src/omero/hdfstorageV2.py +++ b/src/omero/hdfstorageV2.py @@ -590,20 +590,6 @@ def read(self, stamp, colNumbers, start, stop, current): return self._as_data(cols, rowNumbers) - def _getrows(self, start, stop): - return self.__mea.read(start, stop) - - def _rowstocols(self, rows, colNumbers, cols): - l = 0 - rv = [] - for i in colNumbers: - col = cols[i] - col.fromrows(rows) - rv.append(col) - if not l: - l = col.getsize() - return rv, l - @stamped def slice(self, stamp, colNumbers, rowNumbers, current): self.__initcheck()