Make checkstyle happy
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1593114 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b78295b4fa
commit
a2f44d03fe
|
@ -7738,8 +7738,9 @@ public class StringUtils {
|
|||
*/
|
||||
public static String wrap(String str, char wrapWith) {
|
||||
|
||||
if (isEmpty(str) || wrapWith == '\0')
|
||||
if (isEmpty(str) || wrapWith == '\0') {
|
||||
return str;
|
||||
}
|
||||
|
||||
return wrapWith + str + wrapWith;
|
||||
}
|
||||
|
@ -7775,8 +7776,9 @@ public class StringUtils {
|
|||
*/
|
||||
public static String wrap(String str, String wrapWith) {
|
||||
|
||||
if (isEmpty(str) || isEmpty(wrapWith))
|
||||
if (isEmpty(str) || isEmpty(wrapWith)) {
|
||||
return str;
|
||||
}
|
||||
|
||||
return wrapWith.concat(str).concat(wrapWith);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue