Skip to content
Snippets Groups Projects
Commit 9e286407 authored by Stéphane  DALLONGEVILLE's avatar Stéphane DALLONGEVILLE
Browse files

Avoid forbidden character on excel sheet name

parent 6eae5605
No related branches found
No related tags found
No related merge requests found
......@@ -224,8 +224,8 @@ public class PathIntensityProfiler extends EzPlug implements Block, EzStoppable
for (ROI roi : rois)
{
// create a sheet for each ROI
final IcySpreadSheet sh = new IcySpreadSheet(
result.createSheet(roi.getName() + String.format(" - S%04d", Integer.valueOf(roiIndex))));
final IcySpreadSheet sh = new IcySpreadSheet(result.createSheet(
roi.getName().replace(':', '_') + String.format(" - S%04d", Integer.valueOf(roiIndex))));
// write columns headers
int indCol = 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment