Skip to content

Commit

Permalink
Implement getType
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Mar 26, 2024
1 parent 218e5bd commit c8efcf8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/net/imglib2/cache/img/SingleCellArrayImg.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ public RandomAccess< T > randomAccess( final Interval interval )
return randomAccess();
}

@Override
public T getType()
{
return linkedType;
}

class CellArrayRandomAccess extends AbstractLocalizable implements RandomAccess< T >
{
final T type;
Expand Down

0 comments on commit c8efcf8

Please sign in to comment.