Skip to content

Commit

Permalink
cleanup: fix javadoc, remove out-dated TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Jan 12, 2024
1 parent e3bb20d commit 9cf3250
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/net/imglib2/blocks/RangeCopier.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* into a primitive array.
* <p>
* The static {@link RangeCopier#create} method will pick the correct
* implementation for a given {@NativeImg}.
* implementation for a given {@link NativeImg}.
*
* @param <T> a primitive array type, e.g., {@code byte[]}.
*/
Expand Down
1 change: 0 additions & 1 deletion src/main/java/net/imglib2/blocks/TempArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
*
* @param <T> a primitive array type
*/
// TODO: make public? This will be reused in blk algorithms probably?
public interface TempArray< T >
{
T get( final int minSize );
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/net/imglib2/img/NativeImg.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

package net.imglib2.img;

import net.imglib2.img.basictypeaccess.DataAccess;
import net.imglib2.type.Type;

/**
Expand All @@ -49,7 +50,7 @@ public interface NativeImg< T extends Type< T >, A > extends Img< T >
*
* @param updater
* cursor
* @return native array which is referred to by the updater
* @return {@link DataAccess} which is referred to by the updater
*/
A update( Object updater );

Expand Down

0 comments on commit 9cf3250

Please sign in to comment.