Skip to content
Snippets Groups Projects
Commit e101b5a8 authored by tpylak's avatar tpylak
Browse files

SE-242 img analysis registration: ';' -> ","

SVN: 15715
parent 919ab056
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,8 @@ import com.csvreader.CsvReader;
*/
public class ImageAnalysisLMCSplitter
{
private static final String SEPARATOR = ",";
public static void main(String[] args) throws FileNotFoundException, IOException
{
if (args.length != 1)
......@@ -91,6 +93,6 @@ public class ImageAnalysisLMCSplitter
{
tokens[i] = tokens[i].replace(';', ',');
}
return StringUtils.join(tokens, ";");
return StringUtils.join(tokens, SEPARATOR);
}
}
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