Skip to content
Snippets Groups Projects
Commit 222f1304 authored by Peter Steinbach's avatar Peter Steinbach
Browse files

added parseInt statement to discard padded 0s

parent 68bc626c
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ System.out.println( "Load xml file: " );
System.out.println( "selected_xml = " + image_file_directory + merged_xml);
// Load general Parameters
parallel_timepoints = System.getProperty( "parallel_timepoints" );
parallel_timepoints = Integer.parseInt(System.getProperty( "parallel_timepoints" ));
process_timepoint = System.getProperty( "process_timepoint" );
process_channel = System.getProperty( "process_channel" );
process_illumination = System.getProperty( "process_illumination" );
......
......@@ -21,7 +21,7 @@ System.out.println( "Load xml file: " );
System.out.println( "selected_xml = " + image_file_directory + merged_xml);
// Load general Parameters
parallel_timepoints = System.getProperty( "parallel_timepoints" );
parallel_timepoints = Integer.parseInt(System.getProperty( "parallel_timepoints" ));
process_timepoint = System.getProperty( "process_timepoint" );
process_channel = System.getProperty( "process_channel" );
process_illumination = System.getProperty( "process_illumination" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment