// Skip it, just moving along
} else if (isNumeric(value)) {
styleMap.put(indexedKey, Integer.parseInt(value));
} else {
String message = Interpolator.instance().interpolate("Column widths must be numerical or *, not #0", value);
throw new ExcelWorkbookException(message);
}
}
return styleMap;
}