Skip to content
Snippets Groups Projects

Warning fixes

Merged Céline TREBEAU requested to merge feature1 into dev
99 files
+ 556
2078
Compare changes
  • Side-by-side
  • Inline
Files
99
@@ -59,11 +59,6 @@ public class Zellige extends ContextCommand
@@ -59,11 +59,6 @@ public class Zellige extends ContextCommand
// Load the image.
// Load the image.
Object obj = ij.io().open( new File( currentFolder, imageFilePath ).getAbsolutePath() );
Object obj = ij.io().open( new File( currentFolder, imageFilePath ).getAbsolutePath() );
// for large images
// final SCIFIOConfig config = new SCIFIOConfig();
// config.imgOpenerSetImgModes( SCIFIOConfig.ImgMode.PLANAR );
//
// final Dataset obj = ij.scifio().datasetIO().open( imageFilePath, config );
// Display it.
// Display it.
ij.ui().show( obj );
ij.ui().show( obj );
@@ -77,7 +72,7 @@ public class Zellige extends ContextCommand
@@ -77,7 +72,7 @@ public class Zellige extends ContextCommand
// Launch JavaFX interface
// Launch JavaFX interface
MainAppFrame app = new MainAppFrame( context() );
MainAppFrame app = new MainAppFrame( context() );
app.setTitle( VersionUtils.getVersion( Zellige.class ) );
app.setTitle( "Version " + VersionUtils.getVersion( Zellige.class ) );
app.init();
app.init();
}
}
Loading