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 Aug 28, 2024
1 parent 607587f commit 6582ecc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/org/janelia/utility/OuterProductView.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ public RandomAccess< V > randomAccess( final Interval interval )
return randomAccess();
}

@Override
public V getType()
{
return v;
}

// implementing Point is inefficient, create custom RA
public class OuterProductAccess extends Point implements RandomAccess< V >
{
Expand Down

0 comments on commit 6582ecc

Please sign in to comment.