Skip to content
Snippets Groups Projects
Commit 0e7e083e authored by gnaegi's avatar gnaegi
Browse files

OO-938 remove old code that tried to support escaped comments, does not work...

OO-938 remove old code that tried to support escaped comments, does not work with column selection anymore.
parent 0c8c82a5
No related branches found
No related tags found
No related merge requests found
......@@ -265,14 +265,7 @@ public class ChooseColumnsStepForm extends StepFormBasicController {
if(valuesLength > settings.getCommentColumn()) {
String commentStr = values[settings.getCommentColumn()];
// add any additional comment which probably is just a comma in a escaped string
if (valuesLength > 4) {
for (int i = 4; i < valuesLength; i++) {
commentStr += "," + values[i];
}
}
commentStr= commentStr.trim();
if(commentStr.isEmpty()) {
// ignore empty values
row.setComment(null);
......
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