mirror of https://github.com/apache/poi.git
replace for-loop over index with for-each loop
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1752788 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1c0a2bd670
commit
f7fa4f4384
|
@ -157,8 +157,7 @@ public abstract class TextFunction implements Function {
|
|||
public static final Function CLEAN = new SingleArgTextFunc() {
|
||||
protected ValueEval evaluate(String arg) {
|
||||
StringBuilder result = new StringBuilder();
|
||||
for (int i = 0; i < arg.length(); i++) {
|
||||
char c = arg.charAt(i);
|
||||
for (final char c : arg.toCharArray()) {
|
||||
if (isPrintable(c)) {
|
||||
result.append(c);
|
||||
}
|
||||
|
@ -178,7 +177,7 @@ public abstract class TextFunction implements Function {
|
|||
* @return whether the character is printable
|
||||
*/
|
||||
private boolean isPrintable(char c){
|
||||
return (int) c >= 32;
|
||||
return c >= 32;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue