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

typos

parent 7f43bb3a
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ public class MergePartitionList ...@@ -69,7 +69,7 @@ public class MergePartitionList
final HashMap< Integer, ExportMipmapInfo > perSetupMipmapInfo = new HashMap< Integer, ExportMipmapInfo >(); final HashMap< Integer, ExportMipmapInfo > perSetupMipmapInfo = new HashMap< Integer, ExportMipmapInfo >();
for ( final int setupId : seq.getViewSetups().keySet() ) for ( final int setupId : seq.getViewSetups().keySet() )
{ {
final MipmapInfo info = imgLoader.getSetupImgLoader( setupId ).getMipmapInfo();; final MipmapInfo info = imgLoader.getSetupImgLoader( setupId ).getMipmapInfo();
perSetupMipmapInfo.put( setupId, new ExportMipmapInfo( Util.castToInts( info.getResolutions() ), info.getSubdivisions() ) ); perSetupMipmapInfo.put( setupId, new ExportMipmapInfo( Util.castToInts( info.getResolutions() ), info.getSubdivisions() ) );
} }
return perSetupMipmapInfo; return perSetupMipmapInfo;
......
...@@ -373,7 +373,7 @@ public class CropDialog extends JDialog ...@@ -373,7 +373,7 @@ public class CropDialog extends JDialog
final Hdf5ImageLoader loader = ( Hdf5ImageLoader ) sequenceDescription.getImgLoader(); final Hdf5ImageLoader loader = ( Hdf5ImageLoader ) sequenceDescription.getImgLoader();
for ( final int setupId : cropSetups.keySet() ) for ( final int setupId : cropSetups.keySet() )
{ {
final MipmapInfo info = loader.getSetupImgLoader( setupId ).getMipmapInfo();; final MipmapInfo info = loader.getSetupImgLoader( setupId ).getMipmapInfo();
if ( info == null ) if ( info == null )
perSetupMipmapInfo.put( setupId, new ExportMipmapInfo( perSetupMipmapInfo.put( setupId, new ExportMipmapInfo(
new int[][] { { 1, 1, 1 } }, new int[][] { { 1, 1, 1 } },
......
...@@ -150,14 +150,14 @@ public class VisibilityAndGrouping ...@@ -150,14 +150,14 @@ public class VisibilityAndGrouping
state.setCurrentSource( sourceIndex ); state.setCurrentSource( sourceIndex );
checkVisibilityChange(); checkVisibilityChange();
update( CURRENT_SOURCE_CHANGED ); update( CURRENT_SOURCE_CHANGED );
}; }
public synchronized void setCurrentSource( final Source< ? > source ) public synchronized void setCurrentSource( final Source< ? > source )
{ {
state.setCurrentSource( source ); state.setCurrentSource( source );
checkVisibilityChange(); checkVisibilityChange();
update( CURRENT_SOURCE_CHANGED ); update( CURRENT_SOURCE_CHANGED );
}; }
public synchronized boolean isSourceActive( final int sourceIndex ) public synchronized boolean isSourceActive( final int sourceIndex )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment