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 4985ec7 commit 1d8bf73
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,5 +216,10 @@ public RealRandomAccess<T> realRandomAccess(final RealInterval interval) {
return source.realRandomAccess(interval);
}

@Override
public T getType()
{
return source.getType();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -273,5 +273,10 @@ public RealRandomAccess<B> realRandomAccess(final RealInterval interval) {
return rra.realRandomAccess(interval);
}

@Override
public B getType()
{
return rra.getType();
}
}
}

0 comments on commit 1d8bf73

Please sign in to comment.