From 0e7e083e23c2f6594e5e08342756ab95b68ea550 Mon Sep 17 00:00:00 2001
From: gnaegi <none@none>
Date: Wed, 15 Jan 2014 17:52:11 +0100
Subject: [PATCH] OO-938 remove old code that tried to support escaped
 comments, does not work with column selection anymore.

---
 .../olat/course/assessment/bulk/ChooseColumnsStepForm.java | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/main/java/org/olat/course/assessment/bulk/ChooseColumnsStepForm.java b/src/main/java/org/olat/course/assessment/bulk/ChooseColumnsStepForm.java
index 33d7ca560eb..7cf93fb8351 100644
--- a/src/main/java/org/olat/course/assessment/bulk/ChooseColumnsStepForm.java
+++ b/src/main/java/org/olat/course/assessment/bulk/ChooseColumnsStepForm.java
@@ -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);
-- 
GitLab