Skip to content

Commit

Permalink
Add missing getType() implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Apr 5, 2024
1 parent 205e66f commit e73e1f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/net/imagej/ops/coloc/ShuffledView.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,12 @@ public RandomAccess<T> randomAccess(final Interval interval) {
return randomAccess(); // FIXME
}

@Override
public T getType()
{
return image.getType();
}

private class ShuffledRandomAccess extends Point implements RandomAccess<T> {
private final RandomAccess<T> imageRA;
private final long[] blockPos;
Expand Down

0 comments on commit e73e1f1

Please sign in to comment.