typo (needed to escape ' which is actually *not* an HTML entity, who knew)

git-svn-id: http://google-refine.googlecode.com/svn/trunk@188 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Stefano Mazzocchi 2010-03-04 02:24:06 +00:00
parent 87956be756
commit cde6a02cbb

View File

@ -24,7 +24,7 @@ public class Unescape implements Function {
if ("html".equals(mode)) {
return StringEscapeUtils.unescapeHtml(s);
} else if ("xml".equals(mode)) {
return StringEscapeUtils.unescapeHtml(s);
return StringEscapeUtils.unescapeXml(s);
} else if ("csv".equals(mode)) {
return StringEscapeUtils.unescapeCsv(s);
} else if ("javascript".equals(mode)) {