Skip to content
Snippets Groups Projects
Commit 03186532 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

remove unused variables

parent eb9bde3f
No related branches found
Tags
No related merge requests found
...@@ -627,8 +627,6 @@ public class WriteSequenceToHdf5 ...@@ -627,8 +627,6 @@ public class WriteSequenceToHdf5
{ {
progressWriter.out().println( "writing level " + level ); progressWriter.out().println( "writing level " + level );
final long t0 = System.currentTimeMillis();
final RandomAccessibleInterval< UnsignedShortType > sourceImg; final RandomAccessibleInterval< UnsignedShortType > sourceImg;
final int[] factor; final int[] factor;
final boolean useLoopBack; final boolean useLoopBack;
......
...@@ -199,7 +199,6 @@ public class Hdf5ImageLoader implements ViewerImgLoader, MultiResolutionImgLoade ...@@ -199,7 +199,6 @@ public class Hdf5ImageLoader implements ViewerImgLoader, MultiResolutionImgLoade
cachedDimsAndExistence.clear(); cachedDimsAndExistence.clear();
final List< TimePoint > timepoints = sequenceDescription.getTimePoints().getTimePointsOrdered();
try try
{ {
hdf5Access = new HDF5AccessHack( hdf5Reader ); hdf5Access = new HDF5AccessHack( hdf5Reader );
......
...@@ -74,15 +74,12 @@ public class BookmarksEditor ...@@ -74,15 +74,12 @@ public class BookmarksEditor
private final InputMap inputMap; private final InputMap inputMap;
private final Bookmarks bookmarks;
private BookmarkTextOverlayAnimator animator; private BookmarkTextOverlayAnimator animator;
public BookmarksEditor( final ViewerPanel viewer, final InputActionBindings inputActionBindings, final Bookmarks bookmarks ) public BookmarksEditor( final ViewerPanel viewer, final InputActionBindings inputActionBindings, final Bookmarks bookmarks )
{ {
this.viewer = viewer; this.viewer = viewer;
bindings = inputActionBindings; bindings = inputActionBindings;
this.bookmarks = bookmarks;
inputMapsToBlock = new ArrayList<>( Arrays.asList( "bdv", "navigation" ) ); inputMapsToBlock = new ArrayList<>( Arrays.asList( "bdv", "navigation" ) );
final KeyStroke abortKey = KeyStroke.getKeyStroke( KeyEvent.VK_ESCAPE, 0 ); final KeyStroke abortKey = KeyStroke.getKeyStroke( KeyEvent.VK_ESCAPE, 0 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment