Skip to content

Commit b62fdcb

Browse files
committed
Fix JavaDoc
1 parent b6b33e2 commit b62fdcb

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/main/java/net/imglib2/algorithm/util/Grids.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static interface GetForDimension
110110
/**
111111
* Execute {@code runAtOffset} for each offset of a grid defined by
112112
* {@code min}, {@code max}, and {@code blockSize}. The offset object
113-
* {@link p} must be provided by the caller.
113+
* {@code p} must be provided by the caller.
114114
*
115115
* @param min
116116
* @param max
@@ -437,7 +437,6 @@ public GetGridCoordinates( final int[] blockSize, final Interval interval )
437437
* using {@code min = 0}.
438438
*
439439
* @param blockSize
440-
* @param interval
441440
*/
442441
public GetGridCoordinates( final int[] blockSize )
443442
{

src/main/java/net/imglib2/algorithm/util/ParallelizeOverBlocks.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ public static < T > List< T > parallelizeAndWait(
9797
* @param numTasks
9898
* @return List of futures of the submitted tasks. Each future contains a
9999
* list of results.
100-
* @throws InterruptedException
101-
* @throws ExecutionException
102100
*/
103101
public static < T > List< Future< List< T > > > parallelize(
104102
final Function< Interval, T > func,
@@ -157,8 +155,6 @@ public static < T > List< T > parallelizeAndWait(
157155
* @param numTasks
158156
* @return List of futures of the submitted tasks. Each future contains a
159157
* list of results.
160-
* @throws InterruptedException
161-
* @throws ExecutionException
162158
*/
163159
public static < T > List< Future< List< T > > > parallelize(
164160
final Function< Interval, T > func,
@@ -218,8 +214,6 @@ public static < T > List< T > parallelizeAndWait(
218214
* @param numTasks
219215
* @return List of futures of the submitted tasks. Each future contains a
220216
* list of results.
221-
* @throws InterruptedException
222-
* @throws ExecutionException
223217
*/
224218
public static < T > List< Future< List< T > > > parallelize(
225219
final Function< Interval, T > func,

0 commit comments

Comments
 (0)