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 8e3ed6e commit 3fbb5c9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@ public RandomAccess< V > randomAccess( final Interval interval )
{
return sourceInterval.randomAccess( interval );
}

@Override
public V getType()
{
return viewData.getVolatileType();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,10 @@ public int numDimensions()
return viewData.getImg().numDimensions();

}

@Override
public V getType()
{
return viewData.getVolatileType();
}
}

0 comments on commit 3fbb5c9

Please sign in to comment.