mirror of https://github.com/apache/poi.git
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:
parent
ee110ed126
commit
fec7e1cc89
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue