Skip to content

Commit 6a37edf

Browse files
committed
ImgMath: remove @throws from javadoc.
1 parent eb89070 commit 6a37edf

File tree

1 file changed

+3
-4
lines changed
  • src/main/java/net/imglib2/algorithm/math/abstractions

1 file changed

+3
-4
lines changed

src/main/java/net/imglib2/algorithm/math/abstractions/Util.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@
1111
public class Util
1212
{
1313
/**
14-
* Returns true if images have the same dimensions and iterator order.
15-
* Returns false when the iteration order is incompatible.
14+
* Check for compatibility among the iteration order of the images, and
15+
* throws a RuntimeException When images have different dimensions.
1616
*
1717
* @param images
18-
* @return
19-
* @throws Exception When images have different dimensions.
18+
* @return Returns true if images have the same dimensions and iterator order, and false when the iteration order is incompatible.
2019
*/
2120
static public boolean compatibleIterationOrder( final LinkedList< RandomAccessibleInterval< ? > > images )
2221
{

0 commit comments

Comments
 (0)