From e73e1f1f740eec692016ddd545d44d898ef20c3c Mon Sep 17 00:00:00 2001 From: tpietzsch Date: Fri, 5 Apr 2024 16:43:51 +0200 Subject: [PATCH] Add missing getType() implementations --- src/main/java/net/imagej/ops/coloc/ShuffledView.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/net/imagej/ops/coloc/ShuffledView.java b/src/main/java/net/imagej/ops/coloc/ShuffledView.java index b41f762bd..164fc2868 100644 --- a/src/main/java/net/imagej/ops/coloc/ShuffledView.java +++ b/src/main/java/net/imagej/ops/coloc/ShuffledView.java @@ -134,6 +134,12 @@ public RandomAccess randomAccess(final Interval interval) { return randomAccess(); // FIXME } + @Override + public T getType() + { + return image.getType(); + } + private class ShuffledRandomAccess extends Point implements RandomAccess { private final RandomAccess imageRA; private final long[] blockPos;