You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/12/19 19:28:38 UTC

svn commit: r1424006 - /cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java

Author: dkulp
Date: Wed Dec 19 18:28:38 2012
New Revision: 1424006

URL: http://svn.apache.org/viewvc?rev=1424006&view=rev
Log:
Merged revisions 1423980 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1423980 | dkulp | 2012-12-19 12:43:40 -0500 (Wed, 19 Dec 2012) | 2 lines

  Actually use the parameter that is passed in

........

Modified:
    cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java

Modified: cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java?rev=1424006&r1=1424005&r2=1424006&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java (original)
+++ cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/common/util/StringUtils.java Wed Dec 19 18:28:38 2012
@@ -110,9 +110,9 @@ public final class StringUtils {
         return str1;
     }
     
-    public static List<String> getParts(String str, String sperator) {
+    public static List<String> getParts(String str, String seperator) {
         List<String> ret = new ArrayList<String>();
-        List<String> parts = Arrays.asList(str.split("/"));
+        List<String> parts = Arrays.asList(str.split(seperator));
         for (String part : parts) {
             if (!isEmpty(part)) {
                 ret.add(part);
@@ -121,8 +121,8 @@ public final class StringUtils {
         return ret;
     }
     
-    public static String getFirstNotEmpty(String str, String sperator) {
-        List<String> parts = Arrays.asList(str.split("/"));
+    public static String getFirstNotEmpty(String str, String seperator) {
+        List<String> parts = Arrays.asList(str.split(seperator));
         for (String part : parts) {
             if (!isEmpty(part)) {
                 return part;