diff --git a/build-data/BuildData.groovy b/build-data/BuildData.groovy index bb49ac23..2e54890f 100755 --- a/build-data/BuildData.groovy +++ b/build-data/BuildData.groovy @@ -39,7 +39,7 @@ new File(dir_data).mkdirs() def reviews = [] new File("${dir_root}/reviews.tsv").eachLine('UTF-8'){ - def s = it.split(/\t/, 3)*.trim()*.replaceAll('["]{2}', '"') + def s = it.split(/\t/, 3)*.trim() reviews << [user: s[0], date: s[1], text: s[2]] } reviews = reviews.sort{ it.date }