use spaces for indents

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894829 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2021-11-08 10:33:49 +00:00
parent ee110ed126
commit fec7e1cc89
1 changed files with 10 additions and 10 deletions

View File

@ -409,17 +409,17 @@ public class CellFormatPart {
while (codePoints.hasNext()) {
String ch = codePoints.next();
if ("\'".equals(ch) && type.isSpecial('\'')) {
sb.append('\u0000');
continue;
}
sb.append('\u0000');
continue;
}
boolean special = type.isSpecial(ch.charAt(0));
if (special)
sb.append('\'');
sb.append(ch);
if (special)
sb.append('\'');
}
boolean special = type.isSpecial(ch.charAt(0));
if (special)
sb.append('\'');
sb.append(ch);
if (special)
sb.append('\'');
}
return sb.toString();
}