Skip to content

Commit

Permalink
Remove redundant method overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 13, 2024
1 parent a7864a9 commit b4a40ea
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,6 @@ public ImageStack sortDicom( final String[] strings, final String[] info, final
return this;
}

@Override
public void addUnsignedShortSlice( final String sliceLabel, final Object pixels )
{
super.addUnsignedShortSlice( sliceLabel, pixels );
}

@Override
public void addSlice( final ImageProcessor ip )
{
Expand Down Expand Up @@ -483,12 +477,6 @@ private static BiConsumer<ARGBType, FloatType> arbgVoxelAccessAction( Integer ch
( a, b ) -> b.set( ( a.get() >> shift) & 0xff );
}

@Override
public void drawSphere( final double radius, final int xc, final int yc, final int zc )
{
super.drawSphere( radius, xc, yc, zc );
}

@Override
public ImageStack duplicate()
{
Expand Down

0 comments on commit b4a40ea

Please sign in to comment.