Skip to content

Commit

Permalink
solve compilation problem and maybe deprecate bioengine connection
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Oct 9, 2024
1 parent 85d7496 commit d87070c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ RandomAccessibleInterval<T> getImg(ByteOrder byteOrder)
throws IllegalArgumentException {
Objects.requireNonNull(arr);
ByteBuffer buf = ByteBuffer.wrap(arr).order(byteOrder);
return DecodeNumpy.build(buf, byteOrder, dtype, shape, IS_FORTRAN_ORDER);
return null; // TODO remove DecodeNumpy.build(buf, byteOrder, dtype, shape, IS_FORTRAN_ORDER);
}

/**
Expand All @@ -174,7 +174,7 @@ RandomAccessibleInterval<T> getImg(ByteOrder byteOrder, boolean isFortranOrder)
throws IllegalArgumentException {
Objects.requireNonNull(arr);
ByteBuffer buf = ByteBuffer.wrap(arr).order(byteOrder);
return DecodeNumpy.build(buf, byteOrder, dtype, shape, isFortranOrder);
return null; // TODO remove DecodeNumpy.build(buf, byteOrder, dtype, shape, isFortranOrder);
}

/**
Expand Down

0 comments on commit d87070c

Please sign in to comment.