Skip to content

Commit

Permalink
relax generics
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed May 7, 2024
1 parent cb8a3e1 commit 1fe1a60
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import java.util.function.Function;
import java.util.function.IntFunction;
import java.util.function.ToIntFunction;
import net.imglib2.img.basictypeaccess.array.ArrayDataAccess;
import net.imglib2.img.basictypeaccess.array.BooleanArray;
import net.imglib2.img.basictypeaccess.array.ByteArray;
import net.imglib2.img.basictypeaccess.array.CharArray;
Expand All @@ -61,7 +60,7 @@
* @param <P> a primitive array type, e.g., {@code byte[]}.
* @param <A> the corresponding {@code ArrayDataAccess} type.
*/
class PrimitiveTypeProperties< P, A extends ArrayDataAccess< A > >
class PrimitiveTypeProperties< P, A >
{
final Class< P > primitiveArrayClass;

Expand Down

0 comments on commit 1fe1a60

Please sign in to comment.