Skip to content

Commit b90d231

Browse files
committed
Fix javadoc errors
1 parent 31944c6 commit b90d231

File tree

7 files changed

+4
-22
lines changed

7 files changed

+4
-22
lines changed

src/main/java/net/imglib2/algorithm/bspline/BSplineLazyCoefficientsInterpolatorFactory.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,6 @@ public RealRandomAccess< S > create( RandomAccessible< T > f, RealInterval inter
234234

235235
/**
236236
* Returns an image of coefficients that is lazily evaluated and cached.
237-
*
238-
* @param <R>
239-
* the type
240237
*/
241238
public static class LazyCellImgFactory< T extends RealType< T >, S extends RealType< S > & NativeType< S > > extends ImgFactory< S >
242239
{

src/main/java/net/imglib2/algorithm/interpolation/randomaccess/BSplineInterpolator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
/**
4747
* Performs cubic b-spline interpolation by pre-computing coefficients on the fly.
4848
* This will be less time efficient, in general, than pre-computing coefficients
49-
* using a {@link BSplineDecomposition}. This will be more memory-efficient
49+
* using a {@code BSplineDecomposition}. This will be more memory-efficient
5050
* though.
5151
*
5252
* See Unser, Aldroubi, and Eden "Fast B-Spline Transforms for Continuous Image

src/main/java/net/imglib2/algorithm/lazy/Caches.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void load( final SingleCellArrayImg< T, ? > cell )
116116
* {@link NativeType} implementations in a memory cell image with volatile
117117
* cells. The result can be used with non-volatile types for processing but
118118
* it can also be wrapped into volatile types for visualization, see
119-
* {@link VolatileViews#wrapAsVolatile(RandomAccessible)}.
119+
* {@code VolatileViews.wrapAsVolatile(RandomAccessible)}.
120120
*
121121
* This is a very naive method to implement this kind of cache, but it
122122
* serves the purpose for this tutorial. The imglib2-cache library offers

src/main/java/net/imglib2/algorithm/math/execution/IterableRandomAccessibleFunction.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ public class IterableRandomAccessibleFunction< C extends RealType< C >, O extend
8080
* @param computeType
8181
* @param outputType
8282
* @param outConverter Can be null.
83-
* @param interval Necessary only when there aren't any intervals already as inputs to the operations, or to crop
8483
*/
8584
public IterableRandomAccessibleFunction(
8685
final IFunction operation,

src/main/java/net/imglib2/algorithm/neighborhood/GeneralRectangleShape.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ public class GeneralRectangleShape extends RectangleShape
5454

5555
final int size;
5656

57-
/**
58-
* @param span
59-
* @param skipCenter
60-
*/
6157
public GeneralRectangleShape( final int size, final int offset, boolean skipCenter )
6258
{
6359
super( -1, skipCenter );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* Example:
5151
*
52-
* <pre>
52+
* <pre>{@code
5353
* final String url = "https://janelia-cosem.s3.amazonaws.com/jrc_hela-2/jrc_hela-2.n5";
5454
* final String dataset = "/em/fibsem-uint16/s4";
5555
*
@@ -60,7 +60,7 @@
6060
* final RandomAccessibleInterval< T > img = Singleton.get(
6161
* url + ":" + dataset,
6262
* () -> N5Utils.open( n5, dataset ) );
63-
* </pre>
63+
* }</pre>
6464
*
6565
* @author Stephan Saalfeld
6666
*

src/main/java/net/imglib2/algorithm/util/unionfind/UnionFind.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,6 @@ static < B extends BooleanType< B >, L extends IntegerType< L > > void relabel(
136136
* labeled zero, foreground pixels are greater than zero: 1, 2,
137137
* ..., N. Note that this is expected to be zero as background
138138
* values will not be written.
139-
* @param unionFind
140-
* {@link UnionFind}
141139
* @param idForPixel
142140
* Create id from pixel location and value. Multiple calls with
143141
* the same argument should always return the same result.
@@ -168,14 +166,6 @@ public default < B extends BooleanType< B >, L extends IntegerType< L > > void r
168166
* labeled zero, foreground pixels are greater than zero: 1, 2,
169167
* ..., N. Note that this is expected to be zero as background
170168
* values will not be written.
171-
* @param unionFind
172-
* {@link UnionFind}
173-
* @param idForPixel
174-
* Create id from pixel location and value. Multiple calls with
175-
* the same argument should always return the same result.
176-
* @param idForSet
177-
* Create id for a set from the root id of a set. Multiple calls
178-
* with the same argument should always return the same result.
179169
*/
180170
public default < L extends IntegerType< L > > void relabel(
181171
final RandomAccessibleInterval< L > labeling )

0 commit comments

Comments
 (0)