Skip to content

Commit

Permalink
Merge pull request #112 from imagej/feature-rai-getType
Browse files Browse the repository at this point in the history
Addition of getType() API
  • Loading branch information
ctrueden authored Aug 28, 2024
2 parents 854c789 + da981cd commit d0db837
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>37.0.0</version>
<version>38.0.1</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -147,6 +147,9 @@
<!-- NB: Deploy releases to the SciJava Maven repository. -->
<releaseProfiles>sign,deploy-to-scijava</releaseProfiles>

<imglib2.version>7.1.0</imglib2.version>
<imglib2-roi.version>0.15.0</imglib2-roi.version>

<udunits.version>4.3.18</udunits.version>
</properties>

Expand Down
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 d0db837

Please sign in to comment.