This commit is contained in:
Gary Gregory 2024-01-25 15:36:06 -05:00
parent efb9b44acd
commit d1ab963984
1 changed files with 117 additions and 117 deletions

View File

@ -448,7 +448,7 @@ public class StringUtils {
* <pre>
* StringUtils.appendIfMissing(null, null) = null
* StringUtils.appendIfMissing("abc", null) = "abc"
* StringUtils.appendIfMissing("", "xyz") = "xyz"
* StringUtils.appendIfMissing("", "xyz" = "xyz"
* StringUtils.appendIfMissing("abc", "xyz") = "abcxyz"
* StringUtils.appendIfMissing("abcxyz", "xyz") = "abcxyz"
* StringUtils.appendIfMissing("abcXYZ", "xyz") = "abcXYZxyz"