提交 76888e24 编写于 作者: J Juergen Hoeller

polishing

上级 5948d05e
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
......@@ -83,7 +83,7 @@ public abstract class AnnotationUtils {
* supplied {@link Method}, traversing its super methods if no annotation
* can be found on the given method itself.
* <p>Annotations on methods are not inherited by default, so we need to handle
* this explicitly. Tge
* this explicitly.
* @param method the method to look for annotations on
* @param annotationType the annotation class to look for
* @return the annotation found, or <code>null</code> if none found
......
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2009 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
......@@ -354,7 +354,9 @@ public abstract class StringUtils {
if (str == null || sub == null || str.length() == 0 || sub.length() == 0) {
return 0;
}
int count = 0, pos = 0, idx = 0;
int count = 0;
int pos = 0;
int idx = 0;
while ((idx = str.indexOf(sub, pos)) != -1) {
++count;
pos = idx + sub.length();
......@@ -738,8 +740,7 @@ public abstract class StringUtils {
}
List<String> result = new ArrayList<String>();
result.addAll(Arrays.asList(array1));
for (int i = 0; i < array2.length; i++) {
String str = array2[i];
for (String str : array2) {
if (!result.contains(str)) {
result.add(str);
}
......@@ -818,8 +819,8 @@ public abstract class StringUtils {
return array;
}
Set<String> set = new TreeSet<String>();
for (int i = 0; i < array.length; i++) {
set.add(array[i]);
for (String element : array) {
set.add(element);
}
return toStringArray(set);
}
......@@ -882,10 +883,9 @@ public abstract class StringUtils {
return null;
}
Properties result = new Properties();
for (int i = 0; i < array.length; i++) {
String element = array[i];
for (String element : array) {
if (charsToDelete != null) {
element = deleteAny(array[i], charsToDelete);
element = deleteAny(element, charsToDelete);
}
String[] splittedElement = split(element, delimiter);
if (splittedElement == null) {
......@@ -1028,8 +1028,8 @@ public abstract class StringUtils {
public static Set<String> commaDelimitedListToSet(String str) {
Set<String> set = new TreeSet<String>();
String[] tokens = commaDelimitedListToStringArray(str);
for (int i = 0; i < tokens.length; i++) {
set.add(tokens[i]);
for (String token : tokens) {
set.add(token);
}
return set;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册